以他们的GitHub为例,如果我在运行时知道名字只能是"Bob"或"Bill",我可以对此进行验证吗?
public class Person
{
[Required]
public string FirstName { get; set; }
public string MiddleName { get; set; }
[Required]
public string LastName { get; set; }
public Gender Gender { get; set; }
[Range(2, 5)]
public int NumberWithRange { get; set; }
public DateTime Birthday { get; set; }
public Company Company { get; set; }
public Collection<Car> Cars { get; set; }
}
只需创建自己的属性:
public class MustBeBobOrBillAttribute : ValidationAttribute
{
override bool IsValid(object value) {
if (value == null) {
return false;
}
var strValue = (string)value;
return (strValue == "Bob" || strValue == "Bill");
}
}
然后,您可以将其添加到模型中:
public class Person
{
[Required]
[MustBeBillOrBob]
public string FirstName { get; set; }
...
}
如果字符串只能是一些给定的预定义值,那么它必须用 JSON 模式枚举来描述......在这里,我将使用自定义模式处理器(ISchemaProcessor(实现这一点,该处理器添加了枚举信息和自定义属性来应用它。
https://github.com/RSuter/NJsonSchema/wiki/Schema-Processors