I have an overload for LabelFor that can be used like this:
@Html.LabelFor(i => i.MyProperty)
How can I get the compiler to use my overload instead of the one provided by MVC ootb?
Basically this is just so that I can have required fields label’s spit out with * suffix
For that overload, you can’t (reasonably).
Just name the method
Label()orMyLabelFor()etc.