·您现在的位置: 云翼网络 >> 文章中心 >> 网站建设 >> 网站建设开发 >> ASP.NET网站开发 >> Fluent Validation For .NET

Fluent Validation For .NET

作者:佚名      ASP.NET网站开发编辑:admin      更新时间:2022-07-23

Fluent Validation For .NET

//.net 中数据验证,一个开源的项目,直接下载 1 using FluentValidation; 2  3 public class CustomerValidator: AbstractValidator<Customer> { 4   public CustomerValidator() { 5     RuleFor(customer => customer.Surname).NotEmpty(); 6     RuleFor(customer => customer.Forename).NotEmpty().WithMessage("Please specify a first name"); 7     RuleFor(customer => customer.Discount).NotEqual(0).When(customer => customer.HasDiscount); 8     RuleFor(customer => customer.Address).Length(20, 250); 9     RuleFor(customer => customer.Postcode).Must(BeAValidPostcode).WithMessage("Please specify a valid postcode");10   }11 12   PRivate bool BeAValidPostcode(string postcode) {13     // custom postcode validating logic goes here14   }15 }16 17 Customer customer = new Customer();18 CustomerValidator validator = new CustomerValidator();19 ValidationResult results = validator.Validate(customer);20 21 bool validationSucceeded = results.IsValid;22 IList<ValidationFailure> failures = results.Errors;