ASP.NET MVC: Agregar un mensaje de error personalizado que incorpora DisplayName a un ValidationAttribute personalizado

Estoy usando ASP.NET MVC con DataAnnotations. He creado el siguiente ValidationAttribute personalizado que funciona bien.

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);
    }
}

Sin embargo, el mensaje de error que aparece es el estándar "El campo * no es válido". Me gustaría cambiar esto para que sea "El [DisplayName] debe estar entre [minlength] y [maxlength]", sin embargo, no puedo averiguar cómo obtener el DisplayName o incluso el nombre del campo dentro de esta clase.

¿Nadie sabe?

Respuestas a la pregunta(1)

Su respuesta a la pregunta