FluentValidation 12.0.0-preview1

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 12 is a major release. Please read the upgrade guide at https://docs.fluentvalidation.net/en/latest/upgrading-to-12.html Full release notes can be found at https://github.com/FluentValidation/FluentValidation/releases

.NET 8.0

  • No dependencies.

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