I am trying to add a css class to Html.LabelFor on an EditorTemplate
@Html.LabelFor(model => model.Name, new { @class = \"myLabel\" })
my
You're using html.LabelHelper
However you have defined your own LabelHelper method, so use it =)