@model ModelBindingWebSite.ViewModels.VehicleViewModel
@using (Html.BeginForm()) { @Html.ValidationSummary() @Html.EditorFor(m => m) @* EditorFor ignores properties in complex objects that don't have simple types. Add the collection explicitly. *@
@Html.LabelFor(m => m.InspectedDates)
@Html.EditorFor(m => m.InspectedDates)
}