Entity Framework Inheritance - determine object type
I have an Entity Framework Model similar to this:
- Person
- Employee (Inherits Person)
- Contact (Inherits Person)
I can Add,Query (Using OfType), and Update Employees and Contacts with no problem. However, I can not determine what type a Person object is. Say for example:
var person = entities.People.Single(p => p.Id == 5);
How can I do this:
if (开发者_开发问答person.IsEmployee){
//do something
} else if (person.IsContact) {
// do something else
}
Alternatively, I can settle for this:
if (person.IsOfType<Employee>()){
// do something
} else if (person.IsOfType<Contact>()) {
// do something else
}
Is there a way?
if (person is Employee){
//do something
} else if (person is Contact) {
// do something else
}
精彩评论