FluentValidation 涉及正在验证的对象中的 2 个属性
FluentValidation that involves 2 properties in the object being validated
我有一条业务规则规定 PropertyA
应该是 PropertyB
的倍数。
如您所见,验证并不单独处理 属性,而是需要验证 2 个相互关联的属性。如何使用 FluentValidations?
假设你有这样一个对象:
class Data {
public int PropertyA;
public int PropertyB;
}
然后在验证器中你可以这样做:
public class DataValidator : AbstractValidator<Data> {
public DataValidator() {
// 'x' in this case is the instance of the 'Data' class being validated
//
RuleFor(x => x).Must(HaveMultiplierRelationship);
}
private bool HaveMultiplierRelationship(Data d)
{
return (d.PropertyA % d.PropertyB) == 0;
}
}
此方法效果很好,因为您可以将多个 Must
调用链接在一起,以测试相关对象的多个不同方面。
我有一条业务规则规定 PropertyA
应该是 PropertyB
的倍数。
如您所见,验证并不单独处理 属性,而是需要验证 2 个相互关联的属性。如何使用 FluentValidations?
假设你有这样一个对象:
class Data {
public int PropertyA;
public int PropertyB;
}
然后在验证器中你可以这样做:
public class DataValidator : AbstractValidator<Data> {
public DataValidator() {
// 'x' in this case is the instance of the 'Data' class being validated
//
RuleFor(x => x).Must(HaveMultiplierRelationship);
}
private bool HaveMultiplierRelationship(Data d)
{
return (d.PropertyA % d.PropertyB) == 0;
}
}
此方法效果很好,因为您可以将多个 Must
调用链接在一起,以测试相关对象的多个不同方面。