FluentValidation.AspNetCore-validation rules library

2021/9/29 17:10:59

本文主要是介绍FluentValidation.AspNetCore-validation rules library,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

一、https://fluentvalidation.net/

A popular .NET library for building strongly-typed validation rules.

用于构建强类型验证规则的流行 .NET 库。

 

https://github.com/FluentValidation/FluentValidation

Install-Package FluentValidation -Version 10.3.3



#For integration with ASP.NET Core, install the FluentValidation.AspNetCore package from Visual Studio:
Install-Package FluentValidation.AspNetCore -Version 10.3.3


 

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
  }
}

 



这篇关于FluentValidation.AspNetCore-validation rules library的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程