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
}
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论