Let's say i have 2 tables like:
Table:User
-------------
- UserId [pk]
- UserName
- StatusId [fk]
Table: Status
-------------
- StatusId [pk]
- StatusDescription
Now let's say i want to show the StatusDescription in my poco like:
public class User
{
int UserId{get;set;}
string UserName{get;set;}
int StatusId{get;set;}
string StatusDescription{get;set;}
}
Is it possible to map this in EF? Or i can only achieve this with:
public class User
{
int UserId{get;set;}
string UserName{get;set;}
Status UserStatus{get;set;}
}
Any ideas? Thank's in advance.