Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have custom validation attribute such as this:

    public class MyCustomAttribute : ValidationAttribute {
    protected override ValidationResult IsValid(object value, ValidationContext validationContext) {
        if ((int)value == 100) {
            // do some checking to validate & return ValidationResult accordingly

        } else return ValidationResult.Success;
    }
}

In usage like this:

    [DisplayName("My Custom Property")]
    [MyCustom(ErrorMessage = "ERROR!!!")]
    public int? MyCustomProperty { get; set; }

My question is: why is it that inside MyCustomAttribute, within the IsValid method, validationContext is always NULL? Is there anything special I need to set to get it not to be NULL?

share|improve this question
4  
I realize you state that you are, but my understanding is that this is an MVC 3.0 feature. You're absolutely sure you're on MVC 3.0? – Kirk Woll Mar 23 '11 at 16:46
By default there is nothing special you have to do to get it to work. – BuildStarted Mar 23 '11 at 17:01
OK - for some odd reason, it revert back to the 2.0 ref (instead of sticking to the 3.0 ref). I got it working now with MVC 3.0 (as intended). *sigh. – Johannes Setiabudi Mar 23 '11 at 17:41
@Kirk if you write your post/comment as an answer, I will mark it as the accepter answer. – Johannes Setiabudi Mar 23 '11 at 20:14
@Johannes, that feels dirty. :) I think I'll just mark it as a dup (since now that we know you weren't using 2.0, it is). – Kirk Woll Mar 23 '11 at 20:36
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.