My model is
[Required]
[DataType(DataType.Date)]
[Display(Name = "Effective Date")]
public DateTime EFFECTIVEDATE;
I am using Razor in View
@Html.EditorFor(model => model.EFFECTIVEDATE)
How can I enforce MinDate (like from Jquery Datepicker) to disable previous dates in dropdown calendar using Annotations?