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.

No packages depend on FluentValidation.

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