I need to perform two separate validations on a view model property. Apparently, RemoteAttribute can only be applied once per property. This is probably a stupid question, but does anyone know a way around this?

public class ForgotPasswordModel
{
    // Getting compiler error "Duplicate RemoteAttribute attribute"
    [Remote("CanFindEmail", "Account", ErrorMessageResourceName = "EmailNotFound", ErrorMessageResourceType = typeof(ValidationMessages))]
    [Remote("IsAccountVerified", "Account", ErrorMessageResourceName = "AccountByEmailNotVerified", ErrorMessageResourceType = typeof(ValidationMessages))]
    [Required(ErrorMessageResourceType = typeof(ValidationMessages), ErrorMessageResourceName = "PropertyRequired")]
    [Display(ResourceType = typeof(Resx), Name = "PersonEmailAddress")]
    public string Email { get; set; }
}
link|improve this question

76% accept rate
feedback

1 Answer

up vote 0 down vote accepted

There is no way around this (since RemoteAttribute does not support multiple declarations per property) without rewriting how MVC handles remote validation. A single Remote attribute should point at a method on the server that performs all remote validation. You should aggregate multiple validation types in that server method. The reason why you don't want multiple remote attributes per property is performance, as every additional callback would have overhead.

link|improve this answer
This is unfortunate because I need to be able to have specific error methods for the two validations... – gabe Mar 7 '11 at 19:41
You can always have a single method that calls both of your validation methods. – marcind Mar 7 '11 at 20:06
feedback

Your Answer

 
or
required, but never shown

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