标签: asp.net-mvc asp.net-mvc-4
我在SQL Server 2008的表中有一个Quantity列。但是我想在我的asp.net mvc web应用程序中编写一个数据注释来检查输入的值是否大于或等于1?那么有人能告诉我使用哪种数据注释吗?
Quantity
谢谢
答案 0 :(得分:5)
这有用吗?
[Range(1, Int32.MaxValue, ErrorMessage = "Value should be greater than or equal to 1")]