For me I need to set current date and time as default value this solved my issue in View add this code :
<div class="form-group">
@Html.LabelFor(model => model.order_date, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.order_date, new { htmlAttributes = new { @class = "form-control",@Value= DateTime.Now } })
@Html.ValidationMessageFor(model => model.order_date, "", new { @class = "text-danger" })
</div>
</div>