I use MVC 5 and in my model I have DateTime property like this:
[Column(TypeName = "Date")]
[DataType(DataType.Date)]
public DateTime StartDate { get; set; }
when I entered an invalid date the following message appears in ValidationSummary:
The field StartDate must be a date
I need to change this message where I can change it?