I understand that if you want to parse a dateTime String in a specific format when converting it to a DateTime object you do this
DateTime someDateTime = DateTime.ParseExact(myDateTime , "dd MMM yyyy HH:mm:ss", CultureInfo.InvariantCulture);
However when using a model binding with MVC C# the code is declared like this
public DateTime someDateTime {get; set;}
When doing this how do you set the format which incoming date string are expected to have?