たとえば、2 つのアイテムがあります。Item1 は でstring
、Item2 はint
です。Item1 8文字とItem2 5桁(C#)の最大長を設定するにはどうすればよいですか?
質問する
1284 次
1 に答える
0
これを行うには、StringLengthAttributeとIntegerValidatorAttributeを使用するだけです。
class TestCase
{
[StringLength(8, ErrorMessage = "The TestString value cannot exceed 8 characters.")]
[Required(ErrorMessage="Value Required")]
property string TestString;
[IntegerValidator(MaxValue = 99999)]
property int TestInt;
}
于 2013-03-04T13:10:40.777 に答える