Enterprise Library Validation Block - Validate nullable properties? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T03:00:38Zhttp://stackoverflow.com/feeds/question/460264http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/460264/enterprise-library-validation-block-validate-nullable-properties1Enterprise Library Validation Block - Validate nullable properties?Robert MacLean2009-01-20T06:24:39Z2009-11-09T20:04:43Z
<p>I am trying to come up with a validation for a nullable property, like int?</p>
<p>Example</p>
<pre><code> [RangeValidator(0, RangeBoundaryType.Inclusive, 1, RangeBoundaryType.Inclusive)]
int? Age { get; set; }
</code></pre>
<p>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? </p>
http://stackoverflow.com/questions/460264/enterprise-library-validation-block-validate-nullable-properties/460284#4602841Answer by Steven Robbins for Enterprise Library Validation Block - Validate nullable properties?Steven Robbins2009-01-20T06:41:34Z2009-01-20T06:41:34Z<p>You could add the IgnoreNulls attribute:</p>
<pre><code>[IgnoreNulls()]
[RangeValidator(0, RangeBoundaryType.Inclusive, 1, RangeBoundaryType.Inclusive)]
int? Age { get; set; }
</code></pre>
http://stackoverflow.com/questions/460264/enterprise-library-validation-block-validate-nullable-properties/1703407#17034071Answer by Paul for Enterprise Library Validation Block - Validate nullable properties?Paul2009-11-09T20:04:43Z2009-11-09T20:04:43Z<p>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: </p>
<p>The value is not null and failed all its validation rules for key Age.</p>
<p>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.</p>