码迷,mamicode.com
首页 > Web开发 > 详细

asp.net mvc 模型验证组件——FluentValidation

时间:2018-12-03 12:00:49      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:.net   code   ddr   cee   class   bool   not   ESS   must   

asp.net mvc 模型验证组件——FluentValidation

示例

 1 using FluentValidation;
 2 public class CustomerValidator: AbstractValidator<Customer> {
 3   public CustomerValidator() {
 4     RuleFor(customer => customer.Surname).NotEmpty();
 5     RuleFor(customer => customer.Forename).NotEmpty().WithMessage("Please specify a first name");
 6     RuleFor(customer => customer.Company).NotNull();
 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   private bool BeAValidPostcode(string postcode) {
12     // custom postcode validating logic goes here
13   }
14 }
15 Customer customer = new Customer();
16 CustomerValidator validator = new CustomerValidator();
17 ValidationResult results = validator.Validate(customer);
18 bool validationSucceeded = results.IsValid;
19 IList<ValidationFailure> failures = results.Errors;

 

asp.net mvc 模型验证组件——FluentValidation

标签:.net   code   ddr   cee   class   bool   not   ESS   must   

原文地址:https://www.cnblogs.com/sjzww/p/10050984.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!