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.

没有正确的解决方案

其他提示

string modelName = bindingContext.ModelMetadata.DisplayName;
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top