I see there is a similar question asked here but I don't think it was very clear so I'm creating another : Entity Framework: Inheritance, change object type
I have an Entity Student that inherits from an Entity Person.
At some point a Person could become a Student.
Is there any way in Entity Framework 4 to handle this without a stored procedure or creating a new entity.
RedDog
and also have a typeBigDog
, because aDog
can be both big and red (Clifford). I wrote about this issue here: blogs.teamb.com/craigstuntz/2008/07/17/37825 – Horn