Setting attributes of a property in partial classes
I have an employee class generated by Entity Framework (EF). public partial class employee { private string name; public string Name { get{return name;} set{ name = value;} } } Now I want to put a required attribute in the name property to use in for MVC3 validation in another employee partial class which is written by me in order to extend the one which is generated by EF so that I don't have to rewrite my code if I refresh the model generated by EF. My written partial class is in the same assembly and name space. public partial class employee { // What should I write here to add required