DataAnnotationsでASP.NETMVCを使用しています。正常に動作する次のカスタムValidationAttributeを作成しました。
public class StringRangeAttribute : ValidationAttribute
{
public int MinLength { get; set; }
public int MaxLength { get; set; }
public StringRangeAttribute(int minLength, int maxLength)
{
this.MinLength = (minLength < 0) ? 0 : minLength;
this.MaxLength = (maxLength < 0) ? 0 : maxLength;
}
public override bool IsValid(object value)
{
//null or empty is <em>not</em> invalid
string str = (string)value;
if (string.IsNullOrEmpty(str))
return true;
return (str.Length >= this.MinLength && str.Length <= this.MaxLength);
}
}
ただし、表示されるエラーメッセージは標準の「フィールド*が無効です」です。これを「[DisplayName]は[minlength]と[maxlength]の間にある必要があります」に変更したいのですが、このクラス内からDisplayNameやフィールドの名前を取得する方法がわかりません。
誰か知ってる?