Is there a way to use the LabelFor helper and customize the label text without having to use the DisplayNameAttribute in my model?
Why not just create your own Html Helper?
public static class MVCHelpers { public static string CustomLabelFor(this HtmlHelper helper, string ...) { return "" } }