I\'m new to EF so please excuse me if this is a noob question.
Basically, we have a EF model set up using Model First for our \'platform\' project and is shared acro
You cannot use inheritance because once entity is loaded from the data source EF will not know about inheritance and because of that it will instantiate base type without your properties instead of derived type with your properties. Any inheritance must be mapped in EDMX if EF have to work with it.
Using partial class will solve your problem but: