Fluent Validation is an ASP.
What I need is a way to conditionally validate fields depending on if other fields are filled in. Ex. I …
c# .net asp.net-mvc validation fluentvalidationI have the following viewmodel definition public class AccessRequestViewModel { public Request Request { get; private set; } public SelectList Buildings { get; private …
c# asp.net asp.net-mvc-3 fluentvalidation model-validationI have this model public class Person { public int Id { get; set; } public string FirstName { get; set; } public string LastName { …
c# .net asp.net-mvc validation fluentvalidationI am trying use FluentValidation validaton when dropdownlist value is yes and the field must be date. it is working …
c# asp.net-mvc asp.net-mvc-4 fluentvalidationI have model: [Validator(typeof(RegisterValidator))] public class RegisterModel { public string Name { get; set; } public string Email { get; set; } public …
asp.net-mvc asp.net-mvc-3 fluentvalidationI have a FluentValidator that has multiple properties like zip and county etc. I want to create a rule that …
c# fluentvalidationThis is my ViewModel class: public class CreatePersonModel { public string Name { get; set; } public DateTime DateBirth { get; set; } public string …
asp.net-mvc-3 datetime fluentvalidationI have the following rules the 1st does work using unobtrusive, client side validation, the second does not any ideas …
c# jquery asp.net-mvc asp.net-mvc-3 fluentvalidationI am trying out FluentValidation on a project that contains complex view models and I read the documentation here but …
c# asp.net-mvc-3 fluentvalidationI would like to validate the textbox for specific text and it must not be blank. But the regular expression …
asp.net regex validation fluentvalidation fluentvalidation-2.0