how can I use a Required Validation in a property Prop2 only if the Prop1 is true?
Ex: public bool Prop1 { get; set; } [Required] // I need this validation
You can write a custom validator do to this job.
Let me know if you need help to do it.