How to use data annotations to do a conditional validation on model?

For example, lets say we have the following model (Person and Senior):

 public class Person
    {
        [Required(ErrorMessage = "*")]
        public string Name
        {
            get;
            set;
        }

        public bool IsSenior
        {
            get;
            set;
        }


        public Senior Senior
        {
            get;
            set;
        }
    }

    public class Senior
    {
        [Required(ErrorMessage = "*")]//this should be conditional validation, based on the "IsSenior" value
        public string Description
        {
            get;
            set;
        }
    }

And the following view:

<%= Html.EditorFor(m => m.Name)%>
<%= Html.ValidationMessageFor(m => m.Name)%>

<%= Html.CheckBoxFor(m => m.IsSenior)%>
<%= Html.ValidationMessageFor(m => m.IsSenior)%>

<%= Html.CheckBoxFor(m => m.Senior.Description)%>
<%= Html.ValidationMessageFor(m => m.Senior.Description)%>

I would like to be the "Senior.Description" property conditional required field based on the selection of the "IsSenior" propery (true -> required). How to implement conditional validation in ASP.NET MVC 2 with data annotations?


UPDATE

Found nice solution. Look below.

link|improve this question

I've recently asked similar question: stackoverflow.com/questions/2280539/… – Darin Dimitrov Mar 10 '10 at 13:44
I'm confused. A Senior object is always a senior, so why can IsSenior be false in that case. Don't you just need the 'Person.Senior' property to be null when Person.IsSenior is false. Or why not implement the IsSenior property as follows: bool IsSenior { get { return this.Senior != null; } }. – Steven Mar 10 '10 at 13:46
Steven: "IsSenior" translates to the checkbox field in the view. When user checks the "IsSenior" checkBox then the "Senior.Description" Field become mandatory. – Peter Stegnar Mar 10 '10 at 14:47
Darin Dimitrov: Well sort of, but not quite. You see, how would you achieve that the the error mesage is appent to the specific field? If you validate at object level, you get an error at object level. I need error on property level. – Peter Stegnar Mar 10 '10 at 14:51
feedback

6 Answers

up vote 15 down vote accepted

I have solved it with handling the "ModelState" dictionary which is contained by the controller. ModelState dictionary include all the members that are have to be validated.

Here is the solution:

If you need to implement a conditional validation based on some field (e.g. if A=true, then B is requited), while maintain property level error message (this is not true for the custom validators that are on object level) you can achieve this by handling "ModelState" by simply remove unwanted validations from it.

...In some class...

public bool PropertyThatRequiredAnotherFieldToBeFilled
{
  get;
  set;
}

[Required(ErrorMessage = "*")] 
public string DepentedProperty
{
  get;
  set;
}

...class continues...

...In some controller action ...

if (!PropertyThatRequiredAnotherFieldToBeFilled)
{
   this.ModelState.Remove("DepentedProperty");
}

...

By this we achieve conditional validation, while leaving everything else the same.


UPDATE:

My final implementation look like that I have implemented it with an interface on model and action attribute that validates model which implements the mentioned interface. Interface prescribes the Validate(ModelStateDictionary modelState) method. Attribute on action just call the Validate(modelState) on IValidatiorSomething.

I did not want to complicate this answer, that way I did not mention the final implementation details, with at the end in production code matters.

link|improve this answer
2  
The downside is that one of part your validation logic is located in the model and the other part in the controller(s). – Kristof Claes Mar 11 '10 at 12:45
Well of course this is not necessary. I just show the most basic example. I have implemented this with interface on model and with action attribute that validates model which implements the mentioned interface. Interface perspires the Validate(ModelStateDictionary modelState) method. So finally you DO all validation in the model. Anyway, good point. – Peter Stegnar Mar 11 '10 at 16:49
I like the simplicity of this approach in the mean time until the MVC team builds something better out of the box. But does your solution work with client side validation enabled?? – Aaron Feb 21 '11 at 1:58
1  
@Aaron: I am happy that you like solution, but unfortunately this solution does not work with client side validation (as every validation attribute need its JavaScript implementation). You could help yourself with "Remote" attribute, so just Ajax call will be emitted to validate it. – Peter Stegnar Feb 21 '11 at 12:07
Are you able to expand on this answer? This makes some sense, but I want to make sure I'm crystal on it. I'm faced with this exact situation, and I want to get it resolved. – Richard B Jun 20 '11 at 15:45
feedback

there's a much better way to add conditional validation rules in MVC3. Have your model inherit IValidatableObject and implement the Validate method:

public class Person : IValidatableObject
{
    public string Name { get; set; }
    public bool IsSenior { get; set; }
    public Senior Senior { get; set; }

    public IEnumerable<ValidationResult> Validate(ValidationContext validationContext) 
    { 
     if (IsSenior && string.IsNullOrEmpty(Senior.Description)) 
        yield return new ValidationResult("Description must be supplied.");
    }
}

see more of a description at http://weblogs.asp.net/scottgu/archive/2010/07/27/introducing-asp-net-mvc-3-preview-1.aspx

link|improve this answer
1  
+1, implementing IValidateObject is awesome! :) However, your brackets were barely off (I edited them to fix it). – Travis J Apr 17 at 22:53
feedback

Thanks Merritt :)

I've just updated this to MVC 3 in case anyone finds it useful; http://blogs.msdn.com/b/simonince/archive/2011/02/04/conditional-validation-in-asp-net-mvc-3.aspx

Simon

link|improve this answer
feedback

You need to validate at Person level, not on Senior level, or Senior must have a reference to its parent Person. It seems to me that you need a self validation mechanism that defines the validation on the Person and not on one of its properties. I'm not sure, but I don't think DataAnnotations supports this out of the box. What you can do create your own Attribute that derives from ValidationAttribute that can be decorated on class level and next create a custom validator that also allows those class-level validators to run.

I know Validation Application Block supports self-validation out-of the box, but VAB has a pretty steep learning curve. Nevertheless, here's an example using VAB:

[HasSelfValidation]
public class Person
{
    public string Name { get; set; }
    public bool IsSenior { get; set; }
    public Senior Senior { get; set; }

    [SelfValidation]
    public void ValidateRange(ValidationResults results)
    {
        if (this.IsSenior && this.Senior != null && 
            string.IsNullOrEmpty(this.Senior.Description))
        {
            results.AddResult(new ValidationResult(
                "A senior description is required", 
                this, "", "", null));
        }
    }
}
link|improve this answer
"You need to validate at Person level, not on Senior level" Yes this is an option, but you loose the ability that the error is appended to particular field, that is required in the Senior object. – Peter Stegnar Mar 11 '10 at 8:34
feedback

You can disable validators conditionally by removing errors from ModelState:

ModelState["DependentProperty"].Errors.Clear();
link|improve this answer
feedback

Check out this guy:

http://blogs.msdn.com/b/simonince/archive/2010/06/04/conditional-validation-in-mvc.aspx

I am working through his example project right now.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.