如何在c#应用程序中使用FluentValidation
本文关键字:FluentValidation 应用程序 | 更新日期: 2023-09-27 18:27:15
我正在构建一个具有以下层的应用程序
数据-实体框架上下文实体-实体框架POCO对象服务-由WebApi调用以加载/保存实体WebApi-
现在,我认为我应该将我的业务逻辑放入服务层,因为我有一个实体服务,例如,我有Family对象和Family服务。
要使用FluentValidation创建验证对象,您似乎必须从AbstractValidator继承,因为我的服务已经从对象继承了,这是不可能的(或者确实如此)?
我想我唯一的选择是在服务层创建一个FamilyValidator,并从服务中调用这个验证器?
fluentValidation是我的最佳选择,还是我混淆了这里的内容?
如果你有一个名为Customer的实体,这就是你为它编写验证器的方式:
public class CustomerValidator: AbstractValidator<Customer> {
public CustomerValidator() {
RuleFor(customer => customer.Surname).NotEmpty();
RuleFor(customer => customer.Forename).NotEmpty().WithMessage("Please specify a first name");
RuleFor(customer => customer.Discount).NotEqual(0).When(customer => customer.HasDiscount);
RuleFor(customer => customer.Address).Length(20, 250);
RuleFor(customer => customer.Postcode).Must(BeAValidPostcode).WithMessage("Please specify a valid postcode");
}
private bool BeAValidPostcode(string postcode) {
// custom postcode validating logic goes here
}
}
Customer customer = new Customer();
CustomerValidator validator = new CustomerValidator();
ValidationResult results = validator.Validate(customer);
bool validationSucceeded = results.IsValid;
IList<ValidationFailure> failures = results.Errors;