How do I use IValidatableObject?
First off, thanks to @paper1337 for pointing me to the right resources…I’m not registered so I can’t vote him up, please do so if anybody else reads this. Here’s how to accomplish what I was trying to do. Validatable class: public class ValidateMe : IValidatableObject { [Required] public bool Enable { get; set; } [Range(1, … Read more