Edmx model internel
public partial class ItemRequest
{
public int RequestId { get; set; }
//...
}
Adding data annotation to this - if we modify this model directly, when a update to the model is made, the changes are lost . so
To add a attribute in this case 'Required'
Create a new...