An example of adding a validation class to generated classes taken from here with [DisplayName] added is as follows:

using System.ComponentModel.DataAnnotations;  
namespace MvcDA {
    [MetadataType(typeof(ProductMD))]
    public partial class Product {
        public class ProductMD {
            [StringLength(50),Required]
            [DisplayName("Put this text in my view dammit")]
            public object Name { get; set; }
        }
    }
}

Why does use of DisplayNameAttribute in the metadata class not result in populating Html.LabelFor() methods in the View?

link|improve this question

75% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.