Update I give the model .
[DataType(DataType.Date)]
[Required(ErrorMessage = "Введите значение начальной даты")]
public DateTime House1 { get; set; }
When I use @ Html.EditorFor (model => model.House1) in View.I have following marking
<input class="text-box single-line" data-val="true" data-val-date="The
field StartDate must be a date." data-val-required="Введите значение"
id="StartDate" name="StartDate" type="date" value="29.06.2015">
But data not display in a field.display means not pulled from the model in input(@ Html.EditorFor (model => model.House1))
m => m.House1orm => m.StartDate? And why do you mean it does not display - the html you have shown has a value of "29.06.2015"