I have an entity in EF named ...Profile... and I would like to add data annotation attributes to the ...FirstName... property of this entity. So, I created a new partial class like so;...public partial class Profile : EntityObject
{
[Required]
[Di...