FluentValidation 11.5.1

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
FluentValidation.DependencyInjectionExtensions
Dependency injection extensions for FluentValidation
4
FluentValidation.DependencyInjectionExtensions
Dependency injection extensions for FluentValidation
12
FluentValidation.DependencyInjectionExtensions
Dependency injection extensions for FluentValidation
14

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 7.0

  • No dependencies.

.NET Standard 2.0

.NET Standard 2.1

  • No dependencies.

Version Downloads Last updated
11.10.0 1 09/19/2024
11.9.2 7 06/25/2024
11.9.1 0 04/23/2024
11.9.0 0 12/21/2023
11.8.1 0 11/22/2023
11.8.0 0 10/19/2023
11.7.1 0 08/12/2023
11.7.0 0 08/11/2023
11.6.0 0 07/04/2023
11.5.2 19 06/27/2024
11.5.1 7 06/29/2024
11.5.0 0 02/13/2023
11.4.0 0 11/23/2022
11.3.0 0 11/10/2022
11.2.2 0 09/11/2022
11.2.1 0 08/28/2022
11.2.0 0 08/08/2022
11.1.1 0 08/06/2022
11.1.0 0 06/22/2022
11.0.3 0 06/10/2022
11.0.2 0 05/27/2022
11.0.1 0 05/07/2022
11.0.0 0 04/30/2022
10.4.0 0 03/11/2022
10.3.6 0 12/13/2021
10.3.5 0 11/30/2021
10.3.4 0 10/22/2021
10.3.3 0 08/24/2021
10.3.1 0 08/19/2021
10.3.0 0 07/09/2021
10.2.3 0 06/03/2021
10.2.2 0 06/01/2021
10.2.1 0 05/30/2021
10.2.0 0 05/28/2021
10.1.0 0 04/28/2021
10.0.4 0 04/17/2021
9.5.4 0 04/05/2021
9.5.3 0 03/15/2021
9.5.2 0 03/08/2021
9.5.1 0 02/11/2021
9.5.0 0 01/31/2021
9.4.0 0 01/14/2021
9.3.0 0 11/10/2020
9.3.0-preview3 0 10/19/2020
9.3.0-preview2 0 09/15/2020
9.3.0-preview1 0 08/26/2020
9.2.2 0 09/20/2020
9.2.1 0 09/19/2020
9.2.0 0 08/26/2020
9.1.3 0 08/19/2020
9.1.2 0 08/12/2020
9.1.1 0 08/08/2020
9.1.0 0 08/08/2020
9.0.1 0 07/14/2020
9.0.0-preview5 0 05/23/2020
9.0.0-preview4 0 04/22/2020
9.0.0-preview3 0 02/29/2020
9.0.0-preview2 0 02/21/2020
9.0.0-preview1 0 02/08/2020
8.6.3 0 08/28/2020
8.6.2 0 02/29/2020
8.6.1 0 12/28/2019
8.6.0 0 12/04/2019
8.5.1 0 11/02/2019
8.5.0 0 09/24/2019
8.5.0-preview5 0 09/01/2019
8.5.0-preview4 0 07/23/2019
8.5.0-preview3 0 07/10/2019
8.5.0-preview2 0 06/13/2019
8.5.0-preview1 0 05/10/2019
8.4.0 0 05/10/2019
8.3.0 0 04/24/2019
8.2.3 0 04/12/2019
8.2.2 0 04/05/2019
8.2.1 0 04/04/2019
8.2.0 0 03/26/2019
8.1.3 0 01/25/2019
8.1.2 0 12/18/2018
8.1.1 0 12/11/2018
8.1.0 0 12/06/2018
8.1.0-preview2 0 11/14/2018
8.1.0-preview1 0 10/14/2018
8.0.101 0 11/24/2018
8.0.100 0 09/04/2018
8.0.0 0 08/16/2018
8.0.0-rc1 0 07/24/2018
8.0.0-preview4 0 07/16/2018
8.0.0-preview3 0 07/13/2018
8.0.0-preview2 0 07/13/2018
7.6.105 0 08/11/2018
7.6.104 0 07/06/2018
7.6.103 0 06/16/2018
7.6.102 0 06/14/2018
7.6.101 0 06/13/2018
7.6.100 0 06/07/2018
7.6.0 0 06/01/2018
7.6.0-preview1 0 04/12/2018
7.5.2 0 03/16/2018
7.5.1 0 03/11/2018
7.5.0 0 02/26/2018
7.4.0 0 01/26/2018
7.3.4 0 01/02/2018
7.3.3 0 12/22/2017
7.3.2 0 12/21/2017
7.3.1 0 12/13/2017
7.3.0 0 12/13/2017
7.3.0-beta3 0 12/08/2017
7.3.0-beta2 0 11/20/2017
7.3.0-beta1 0 11/11/2017
7.2.1 0 10/24/2017
7.2.0 0 10/05/2017
7.2.0-beta3 0 09/05/2017
7.2.0-beta2 0 08/22/2017
7.2.0-beta1 0 08/19/2017
7.1.1 0 07/25/2017
7.1.0 0 06/28/2017
7.1.0-beta1 0 06/24/2017
7.0.3 0 06/07/2017
7.0.2 0 05/26/2017
7.0.1 0 05/23/2017
7.0.0 0 05/19/2017
7.0.0-beta3 0 05/01/2017
7.0.0-beta2 0 04/17/2017
7.0.0-beta1 0 04/07/2017
6.4.1 0 03/15/2017
6.4.1-beta1 0 03/13/2017
6.4.0 0 03/03/2017
6.4.0-rc4 0 02/13/2017
6.4.0-rc3 0 02/03/2017
6.4.0-rc2 0 01/30/2017
6.4.0-rc1 0 01/30/2017
6.4.0-beta9 0 11/21/2016
6.4.0-beta8 0 10/31/2016
6.4.0-beta7 0 10/28/2016
6.4.0-beta6 0 10/25/2016
6.4.0-beta5 0 10/24/2016
6.4.0-beta4 0 10/21/2016
6.4.0-beta3 0 07/04/2016
6.4.0-beta2 0 07/01/2016
6.4.0-beta10 0 01/30/2017
6.4.0-beta1 0 06/28/2016
6.3.4-alpha 0 06/01/2016
6.3.3-alpha 0 05/27/2016
6.2.1 0 02/26/2016
6.2.1-beta1 0 02/24/2016
6.2.0 0 02/22/2016
6.2.0-beta1 0 02/12/2016
6.1.0 0 01/18/2016
6.0.2 0 01/05/2016
6.0.1 0 01/05/2016
6.0.0 0 12/22/2015
5.6.2 0 05/29/2015
5.6.1 0 05/29/2015
5.5.0 0 10/31/2014
5.4.0 0 07/03/2014
5.3.0 0 05/27/2014
5.2.0 0 05/21/2014
5.1.0 0 03/11/2014
5.0.0.1 0 10/24/2013
4.0.0.1 0 07/18/2013
4.0.0 0 04/29/2013
3.4.6 0 08/30/2012
3.4.0 0 08/17/2012
3.3.1 0 03/30/2012
3.2.0 0 11/14/2011
3.1.0 0 07/30/2011
3.0.0.1 0 07/05/2011
3.0.0 0 06/25/2011
2.0.0 0 01/09/2011
1.3.0 0 01/07/2011