I am trying to set up my entity framework edmx model to integrate with the asp .net identity tables. Unfortunately to use the UserManager and other managing classes, I need to derive my entities from base class IdentiUser, IdentityRole and so on. How can I do this?
And if I derive them, they already define some properties with the exact names as in the database and they will only get shadowed by the properties generated by EF when I update the model from the database.