Fluent Validation is an ASP.
I'm using mvc. So I want to validate user input number is 7 digit. So I wrote a class. public class …
c# asp.net-mvc fluentvalidationI am using FluentValidation and I want to format a message with some of the object's properties value. The problem …
c# .net linq fluentvalidation funcI'm trying to hook Fluent Validation to my MVC WEB Api project, and it doesn't wanna work. When I use …
c# asp.net-web-api fluentvalidationI have the following model: public class ViewDataItem { public string viewName { get; set; } public UpdateIndicator updateIndicator { get; set; } } With the …
c# json asp.net-web-api enums fluentvalidationI have Category model that has Name field, and every category name must be unique. I have made validation and …
c# asp.net asp.net-mvc asp.net-mvc-4 fluentvalidationI have a hierarchy of data classes public class Base { // Fields to be validated } public class Derived1 : Base { // More fields …
c# fluentvalidationHello I am trying to get custom validation response for my webApi using .NET Core. Here I want to have …
c# .net asp.net-web-api asp.net-core fluentvalidationI'm using FluentValidation to validate a collection inside of an object, comparing an element of the collection items to an …
c# lambda fluentvalidationI have the following class public class ValidProjectHeader : AbstractValidator<Projects.ProjectHeader> { public ValidProjectHeader() { RuleFor(x => x.LobId).…
c# fluentvalidationI'm testing a PUT with two string: company.CurrencyCode = request.CurrencyCode ?? company.CurrencyCode; company.CountryIso2 = request.Country ?? company.CountryIso2; and …
c# fluentvalidation