I have used Entity Framework database first few times. Now, I'm trying to approach code first. I am little bit confused in some places. Lets say, I would like to have two classes- ApplicationUser
& CurrentUser
. All of these classes intended to use the same database table Users. The structure of Users table looks like-
-----------------------------------------------------------------------------------------------------------
UserId | FullName | Designation | LoginName | LoginPassword | CreatedDateTime | IsActive | FewOtherFields |
-----------------------------------------------------------------------------------------------------------
Here are the classes details-
//Will be used to add,edit, delete records for new user.
ApplicationUser
{
UserId
FullName
Designation
LoginName
LoginPassword
CreatedDateTime
IsActive
...
OtherProperties
...
}
//Will be used to login and other purposes.
CurrentUser
{
UserId
FullName
Designation
LoginName
LoginPassword
IsActive
}
Might be this is an easy thing, or there are tricky techniques to achieve this. Any help?
You can use Table per Hierarchy inheritance strategy:
Usage: