So I can create a property like so:
[StringLength(250, ErrorMessage = "Please limit your {0} to {1} characters")]
[DisplayName("Project name")]
public string Name { get; set; }
And if the length entered is longer than 250 characters, it will display the following error:
Please limit your Project name to 250 characters
Is there a way to make the {0}
appear as lower case so that the message is like:
Please limit your project name to 250 characters