以their 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; }
}
答案 0 :(得分:0)
只需创建自己的属性:
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; }
...
}
答案 1 :(得分:0)
如果字符串只能是某些给定的预定义值,则必须使用JSON Schema枚举对其进行描述...在这里,我将使用自定义架构处理器(ISchemaProcessor)来实现此功能,该处理器会添加枚举信息和自定义属性应用它。
https://github.com/RSuter/NJsonSchema/wiki/Schema-Processors