Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
mvc4 で DataAnnotations を使用して、0 より大きい数値に対してのみ有効な値を取得したいのですが、助けてください。
ありがとう。
[Range]次の属性を使用できます。
[Range]
[Range(1, int.MaxValue, ErrorMessage = "The value must be greater than 0")] public int Value { get; set; }