DataAnnotation用于检查整数是否为负值

时间:2013-11-29 12:51:26

标签: asp.net-mvc asp.net-mvc-4

我在SQL Server 2008的表中有一个Quantity列。但是我想在我的asp.net mvc web应用程序中编写一个数据注释来检查输入的值是否大于或等于1?那么有人能告诉我使用哪种数据注释吗?

谢谢

1 个答案:

答案 0 :(得分:5)

这有用吗?

[Range(1, Int32.MaxValue, ErrorMessage = "Value should be greater than or equal to 1")]