EF 4.0 Code only assocation from abstract to derived
- by Jeroen
Using EF 4.0 Code only i want to make an assocation between an abstract and normal class.
I have class 'Item', 'ContentBase' and 'Test'.
'ContentBase' is abstract and 'Test' derives from it.
'ContentBase' has a property 'Item' that links to an instance of 'Item'.
So that 'Test.Item' or any class that derives from 'ContentBase' has an 'Item'…