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?