I use the FluentValidation framework to add validation and annotations to my models in an MVC project.
I am using the Captcha class from commonlibrary (http://commonlibrarynet.codeplex.com/). My code works and everything but now I\'m trying to write the unit test.
Since there is no way to validate a property (with unobtrusive clientside validation) using multiple regex patterns (because validation type has to be unique) i decided to extend FluentValidation so i
i want to overr开发者_如何学编程ide the default asp.net-mvc validation when posting a form so i tried using fluent.validation
i followed all of these steps in this tutorial: Created a validator class public class ProjectValidator : AbstractValidator<ProjectViewModel>
I am attempting to use FluentValidation 2.0 with an MVC 3 project.I have followed the instructions here to install FV within the project.
I am using FluentValidation in my ASP.NET MVC 3 application. I have a MaxNumberTeamMembers property in my view model as such:
I use fluent validation with client side unobtrusive validation. <fieldset class=\"edit-root-form\">
I\'m using FluentValidation 2 for validating some entities. I\'d like to create an IValidationService that I can pass into other services to allow them to perform validation. I\'d like to expose it li
I am trying to get Fluent Validation to work correctly on my client side validation.I am using ASP.NET MVC 3.