使用Fluent Validator验证Bool
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Fluent Validator验证Bool相关的知识,希望对你有一定的参考价值。
我想使用流利的验证器验证bool属性。我应该使用哪种方法?
.NotNull()和.NotEmpty()函数不起作用。
谢谢。
答案
你应该使用.NotNull()
。
NotEmpty()
将只接受true
作为有效财产。 NotNull()
将把true
和false
作为有效的财产。
另一答案
为了使用流畅的验证器验证布尔值:
创建以下规则
RuleFor(x => x.BooleanProperty)
.Must(ValidateBoolean)
.WithErrorCode("Boolean Validation Failed");
定义谓词验证器
private bool ValidateBoolean(T arg1, bool arg2, PropertyValidatorContext arg3)
{
// validate arg2, return true if validation successful or false if failed
throw new System.NotImplementedException();
}
另一答案
请看看this question。它成功回答了,我猜这就是你要找的东西。
在其中,他们创建流畅的验证器来检查是否选择了@html.CheckBox
。如果我理解你的问题,这正是你正在寻找的。
如果有帮助,请告诉我。 - 谢谢
另一答案
尝试使用.Equal(true)
- 那就做了。
以上是关于使用Fluent Validator验证Bool的主要内容,如果未能解决你的问题,请参考以下文章
Java 的业务逻辑验证框架 fluent-validator
Java 的业务逻辑验证框架 fluent-validator