Most voted "fluentvalidation" questions
A small validation library for . NET that allows creating validation rules via lambda expressions.
Learn more…4 questions
Sort by count of
-
12
votes1
answer293
viewsWhat are the best practices with implementation of Dryioc, Fluentvalidation and Lazy?
I’m building an architecture based on the use of Lazy, DryIoc e o FluentValidation. I intend to do all validations with the object. When actually using the object I will instantiate it (Start). I…
-
8
votes1
answer157
viewsHow to use Fluentvalidation ruleset functionality in Web API?
I would like to use a feature of Fluentvalidation calling for ruleset in a web API project, because I don’t want to have to be doing model validation manually every time a action method is called.…
-
2
votes1
answer404
viewsHow can I validate an Enum using Fluentvalidator?
I’m creating a validation class in c# using FluentValidation to validate that my property Type of my class Account be the type AccountType which is mine enum. How would the correct implementation of…
-
1
votes0
answers34
viewsFluent Validation Notnull() method does not work
Hello! I have developed some user registration validations that follow: using FluentValidation; using System.Linq; using System.Text.RegularExpressions; namespace…