FluentValidation 11.0.2

FluentValidation is validation library for .NET that uses a fluent interface and lambda expressions for building strongly-typed validation rules.

Supporting the project

If you use FluentValidation in a commercial project, please sponsor the project financially. FluentValidation is developed and supported by @JeremySkinner for free in his spare time and financial sponsorship helps keep the project going. You can sponsor the project via either GitHub sponsors or OpenCollective.

Example

With FluentValidation, you can define a class that inherits from AbstractValidator which contains the rules for a particular class. The example below shows how you could define rules for a Customer class, and then how to execute the validator.

using FluentValidation;

public class CustomerValidator: AbstractValidator<Customer> {
  public CustomerValidator() {
    RuleFor(x => x.Surname).NotEmpty();
    RuleFor(x => x.Forename).NotEmpty().WithMessage("Please specify a first name");
    RuleFor(x => x.Discount).NotEqual(0).When(x => x.HasDiscount);
    RuleFor(x => x.Address).Length(20, 250);
    RuleFor(x => x.Postcode).Must(BeAValidPostcode).WithMessage("Please specify a valid postcode");
  }

  private bool BeAValidPostcode(string postcode) {
    // custom postcode validating logic goes here
  }
}

var customer = new Customer();
var validator = new CustomerValidator();

// Execute the validator.
ValidationResult results = validator.Validate(customer);

// Inspect any validation failures.
bool success = results.IsValid;
List<ValidationFailure> failures = results.Errors;

Full Documentation

Full documentation can be found at https://docs.fluentvalidation.net

Release Notes and Change Log

Release notes can be found on GitHub.

Showing the top 20 packages that depend on FluentValidation.

Packages Downloads
FastEndpoints
A light-weight REST Api framework for ASP.Net 8 and newer that implements REPR (Request-Endpoint-Response) Pattern.
8
FastEndpoints
A light-weight REST Api framework for ASP.Net 6 and newer that implements REPR (Request-Endpoint-Response) Pattern.
7
FastEndpoints
A light-weight REST Api framework for ASP.Net 8 and newer that implements REPR (Request-Endpoint-Response) Pattern.
7
FastEndpoints
A light-weight REST Api framework for ASP.Net 6 that implements REPR (Request-Endpoint-Response) Pattern.
7

FluentValidation 11 is a major release. Please read the upgrade guide at https://docs.fluentvalidation.net/en/latest/upgrading-to-11.html Full release notes can be found at https://github.com/FluentValidation/FluentValidation/releases

.NET 5.0

  • No dependencies.

.NET 6.0

  • No dependencies.

.NET Standard 2.0

  • No dependencies.

.NET Standard 2.1

  • No dependencies.

Version Downloads Last updated
12.1.0 5 11/5/2025
12.0.0 22 5/8/2025
12.0.0-preview1 27 2/18/2025
11.12.0 6 11/5/2025
11.11.0 26 2/19/2025
11.10.0 29 10/1/2024
11.9.2 28 7/20/2024
11.9.1 32 5/3/2024
11.9.0 34 3/8/2024
11.8.1 36 3/8/2024
11.8.0 30 3/8/2024
11.7.1 35 3/8/2024
11.7.0 29 3/8/2024
11.6.0 33 2/27/2024
11.5.2 36 3/8/2024
11.5.1 32 3/8/2024
11.5.0 32 3/6/2024
11.4.0 37 3/8/2024
11.3.0 28 3/8/2024
11.2.2 33 3/8/2024
11.2.1 33 3/8/2024
11.2.0 36 2/12/2024
11.1.1 29 3/8/2024
11.1.0 35 3/3/2024
11.0.3 40 3/8/2024
11.0.2 30 3/8/2024
11.0.1 35 3/2/2024
11.0.0 36 2/27/2024
10.4.0 32 2/26/2024
10.3.6 29 3/8/2024
10.3.5 29 3/8/2024
10.3.4 31 3/8/2024
10.3.3 31 3/8/2024
10.3.1 39 3/8/2024
10.3.0 34 2/11/2024
10.2.3 33 3/8/2024
10.2.2 30 3/1/2024
10.2.1 34 3/2/2024
10.2.0 33 2/10/2024
10.1.0 37 3/8/2024
10.0.4 36 3/7/2024
9.5.4 38 3/8/2024
9.5.3 30 3/8/2024
9.5.2 36 3/8/2024
9.5.1 34 3/8/2024
9.5.0 34 3/8/2024
9.4.0 40 3/8/2024
9.3.0 39 2/28/2024
9.3.0-preview3 34 2/27/2024
9.3.0-preview2 37 4/12/2022
9.3.0-preview1 30 3/8/2024
9.2.2 57 3/8/2024
9.2.1 34 3/8/2024
9.2.0 41 2/11/2024
9.1.3 26 3/1/2024
9.1.2 32 2/10/2024
9.1.1 33 2/21/2024
9.1.0 37 3/1/2024
9.0.1 39 3/8/2024
9.0.0-preview5 28 3/8/2024
9.0.0-preview4 37 3/8/2024
9.0.0-preview3 32 3/8/2024
9.0.0-preview2 31 3/8/2024
9.0.0-preview1 29 3/8/2024
8.6.3 37 3/8/2024
8.6.2 38 3/8/2024
8.6.1 33 3/8/2024
8.6.0 34 2/23/2024
8.5.1 33 2/23/2024
8.5.0 34 3/4/2024
8.5.0-preview5 38 3/8/2024
8.5.0-preview4 26 3/8/2024
8.5.0-preview3 35 3/8/2024
8.5.0-preview2 28 3/8/2024
8.5.0-preview1 33 3/8/2024
8.4.0 33 3/8/2024
8.3.0 30 3/8/2024
8.2.3 29 3/8/2024
8.2.2 37 3/8/2024
8.2.1 32 3/8/2024
8.2.0 33 3/8/2024
8.1.3 31 3/8/2024
8.1.2 31 3/8/2024
8.1.1 28 2/10/2024
8.1.0 38 3/4/2024
8.1.0-preview2 31 3/8/2024
8.1.0-preview1 33 3/8/2024
8.0.101 37 3/8/2024
8.0.100 34 3/8/2024
8.0.0 28 3/5/2024
8.0.0-rc1 38 3/8/2024
8.0.0-preview4 31 3/8/2024
8.0.0-preview3 35 3/8/2024
8.0.0-preview2 36 2/29/2024
7.6.105 35 3/8/2024
7.6.104 34 3/8/2024
7.6.103 30 3/8/2024
7.6.102 34 3/8/2024
7.6.101 33 3/3/2024
7.6.100 34 3/8/2024
7.6.0 39 3/8/2024
7.6.0-preview1 30 3/8/2024
7.5.2 29 3/8/2024
7.5.1 31 2/24/2024
7.5.0 43 3/8/2024
7.4.0 26 3/7/2024
7.3.4 31 3/8/2024
7.3.3 30 3/8/2024
7.3.2 33 3/8/2024
7.3.1 32 3/8/2024
7.3.0 36 3/8/2024
7.3.0-beta3 33 3/8/2024
7.3.0-beta2 32 3/8/2024
7.3.0-beta1 30 3/8/2024
7.2.1 29 3/8/2024
7.2.0 32 2/26/2024
7.2.0-beta3 30 3/8/2024
7.2.0-beta2 25 3/8/2024
7.2.0-beta1 31 3/8/2024
7.1.1 27 3/8/2024
7.1.0 34 3/8/2024
7.1.0-beta1 34 3/8/2024
7.0.3 36 3/8/2024
7.0.2 33 3/8/2024
7.0.1 40 3/8/2024
7.0.0 33 3/8/2024
7.0.0-beta3 31 3/8/2024
7.0.0-beta2 31 3/8/2024
7.0.0-beta1 28 3/8/2024
6.4.1 29 3/8/2024
6.4.1-beta1 39 3/8/2024
6.4.0 32 3/8/2024
6.4.0-rc4 38 3/8/2024
6.4.0-rc3 32 3/8/2024
6.4.0-rc2 36 3/8/2024
6.4.0-rc1 34 3/8/2024
6.4.0-beta9 26 3/8/2024
6.4.0-beta8 29 3/8/2024
6.4.0-beta7 31 3/8/2024
6.4.0-beta6 28 3/8/2024
6.4.0-beta5 33 3/8/2024
6.4.0-beta4 31 3/8/2024
6.4.0-beta3 32 3/8/2024
6.4.0-beta2 35 3/8/2024
6.4.0-beta10 34 3/8/2024
6.4.0-beta1 28 3/8/2024
6.3.4-alpha 28 3/2/2024
6.3.3-alpha 32 3/8/2024
6.2.1 34 3/8/2024
6.2.1-beta1 33 3/8/2024
6.2.0 27 3/8/2024
6.2.0-beta1 30 3/8/2024
6.1.0 35 3/8/2024
6.0.2 36 3/8/2024
6.0.1 33 3/8/2024
6.0.0 32 3/8/2024
5.6.2 33 3/8/2024
5.6.1 33 3/8/2024
5.5.0 27 3/8/2024
5.4.0 34 3/2/2024
5.3.0 34 3/8/2024
5.2.0 34 3/8/2024
5.1.0 37 3/6/2024
5.0.0.1 30 2/11/2024
4.0.0.1 33 2/10/2024
4.0.0 27 3/8/2024
3.4.6 36 3/8/2024
3.4.0 32 3/8/2024
3.3.1 29 3/8/2024
3.2.0 35 3/3/2024
3.1.0 34 3/8/2024
3.0.0.1 33 2/10/2024
3.0.0 28 3/8/2024
2.0.0 34 3/8/2024
1.3.0 36 3/8/2024