vote up 1 vote down star

I am trying to come up with a validation for a nullable property, like int?

Example

    [RangeValidator(0, RangeBoundaryType.Inclusive, 1, RangeBoundaryType.Inclusive)]
    int? Age { get; set; }

However if I set Age to null validation fails because it doesn't fall in the range, I know I need an [ValidatorComposition(CompositionType.Or)] as well, but what else should I use?

flag

2 Answers

vote up 1 vote down check

You could add the IgnoreNulls attribute:

[IgnoreNulls()]
[RangeValidator(0, RangeBoundaryType.Inclusive, 1, RangeBoundaryType.Inclusive)]
int? Age { get; set; }
link|flag
vote up 0 vote down

Yes but then if the RangeValidator causes a ValidationResult, then for some reason I end up wth two ValidationResults... one correctly for the range validation problem but then another cryptic one that says:

The value is not null and failed all its validation rules for key Age.

This is silly, I don't EVER want the IgnoreNulls validator to cause a validation result! Its really there to modify the others, isn't it. Add this to the lack of real Validation inheritance and functionality when using polymorphism, and so so many other things, and there are so many "small" problems with the VAB attributes that I find it unusable for anything beyond the trivial.

link|flag

Your Answer

Get an OpenID
or

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