0

在我的模型中,我的属性必须是 type 的确切大小integer

我知道属性RangeMaxLenght,有确切的大小吗?

谢谢

4

1 回答 1

3

您可以使用以下[RegularExpression]属性:

[RegularExpression(@"\d{13,13}", ErrorMessage = "You must input exactly 13 digits")]
public string SomeValue { get; set; }
于 2013-06-01T20:29:31.640 回答