Anyone got any idea on how to specify text when using Html.LabelFor(c=>c.MyField). It\'s just MyField might not be an appropriate name to displ
Html.LabelFor(c=>c.MyField)
MyField
Easy solution just add the following in the view:
@Html.LabelFor(c=>c.MyField, "My Field")