我在 MVC4 中使用数据注释进行模型验证,目前正在使用 StringLengthAttribute 但是我不想指定最大值(当前设置为 50),但我想指定最小字符串长度值。
有没有办法只指定最小长度?也许我可以使用另一个属性?
我目前的代码是:
[Required]
[DataType(DataType.Password)]
[Display(Name = "Confirm New Password")]
[StringLength(50, MinimumLength = 7)]
[CompareAttribute("NewPassword", ErrorMessage = "The New Password and Confirm New Password fields did not match.")]
public string ConfirmNewPassword { get; set; }