Hi,
I had used Simple Validation and IDataErrorInfo ... As well as a custom Validation Service Layer.
But that's not the problem. At the moment I am using Fluent Validation:
http://www.codeplex.com/FluentValidation
On my custom Model Binder I have the following:
ValidatorFactory factory = new ValidatorFactory();
IValidator<ArticleModel> validator = factory.GetValidator();
ValidationResult result = validator.Validate(model);
result.AddToModelState(bindingContext.ModelState, "");On the summary I get the errors but not on the individual validators.
Does anyone knows what am I missing?
Thanks,
Miguel