Question

I have this code:

    public class MyModelBinder : IModelBinder
    {
        public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
        {

         string modelName = bindingContext.ModelName;

modelName returns the property name, but I need to access the DisplayName, rather than the property name, for example "First Name" rather than "FirstName". Is this possible from the controllerContext or bindingContext? I couldn't find anything in the watch.

No correct solution

OTHER TIPS

string modelName = bindingContext.ModelMetadata.DisplayName;
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top