在这个实体中:
public class Foo
{
public Guid Id { get; set; }
public string Type { get; set; }
public string Name { get; set; }
}
如何使用实体的其他属性或从数据库中获取的任何其他字符串在运行时自定义验证消息?
RuleFor(foo => foo.Name)
的验证邮件将是:
var msg = "The foo with type '" + foo.Type + "' already exists in the database with name '" + nameInDataBase + "'!"
答案 0 :(得分:0)
创建几个自定义验证器,并将它们定义为扩展方法,以便链接它们。将验证所需的内容传递给模型。然后,如果您将foo.Type作为模型的属性,则可以在消息中显示它,如下所示:
RuleFor(foo => foo.Name).FooTypeIsInvalidValidator().WithMessage("The foo with type: {0} is invalid!", foo => foo.Type);
或
RuleFor(foo => foo.Name).FooAlreadyExistsValidator().WithMessage("The foo with type: {0} already exists in the database with name", foo => foo.Type);
答案 1 :(得分:0)
由于我有一个复杂的场景,解决了我的问题的解决方案在这里找到:Custom Validators。
这是验证码:
public class FooValidator : AbstractValidator<Foo>
{
public FooValidator()
{
Custom(foo =>
{
var repo = new Repository<Foo>();
var otherFooFromDB = repo.GetByName(foo.Name);
if (!otherFooFromDB.Equals(foo))
{
return new ValidationFailure("Id", "The foo with ID'" + otherFooFromDB.Id + "' has the same name of this new item '" + foo.Id + " - " + foo.Name + "'.!");
}
else
{
return null;
}
});
}
}
使用此解决方案验证即可,只需返回null
。
但是当存在验证错误时,返回ValidationFailure
的实例并在其构造函数中传递validated属性的名称和验证消息。