我有一个通用对象,在我的数据库中设置了特定的规则。我想在数据库中执行特定的规则设置,具体取决于对象中的值。
例如,假设我有一个像这样的对象
public class MyObject {
public int Type { get; set; }
public string Name { get; set; }
public decimal? Value { get; set; }
}
现在,如果Type的值为0,那么我需要确保填充Name。如果Type为1,那么我需要确保填充Name并且超过50个字符,并且还需要填充值。
这是一个基本的例子,也有更多的规则。到目前为止我已经
了public class MyObjectValidator : AbstractValidator<MyObject>
{
public MyObjectValidator()
{
// here i would like to check what the value of type is, something like
if (Type == 1) {
RuleFor(e => e.Name).NotEmpty().WithMessage("Please enter a name");
}
if (Type == 2) {
RuleFor(....);
}
}
}
但我不知道如何获得正在验证的实例。
答案 0 :(得分:0)
我真的认为它能完成你正在寻找的工作。
public class MyObjectValidator : AbstractValidator<MyObject>
{
public MyObjectValidator()
{
RuleFor(x => x.Name).NotEmpty().When(m => m.Type == 1).WithMessage("your msg");
RuleFor(x => x.Name).Must(s => s.Length > 50).When(m => m.Type == 2).WithMessage("your msg");;
}
}