I have a problem that I can not solve days ago, I am working with enttity framework codefirst in vs2015 with c #, I have a hierarchy, summarizing:
Person -IDPersona -first name -last name
User -IDPersona -user -password
Operator -IDPersona -level -cantHoras
Now, with codefirst when creating entities I do not create an inheritance, what I believe is that a User has "inside" a person, does not make the Abstract Person class.
How should I define the model? the Heritage? the classes to then do an Add-migration and an update-database and the inheritance works
Thank you very much