As you know we can set attributes to actionLink or textBox in razor views but how can we set attributes to @Html.EditorFor, I know the EditorFor is a dynamic el
@Html.EditorFor
Try this:
@Html.EditorFor(model => model.Title, new { htmlAttributes = new { @class = "form-control" } })