I am new to EF, so please excuse me if this is a noob question.
Basically, we have an EF model created using the First model for our project βplatformβ and shared in many applications that we build on top of this platform. In some of these applications, we want to extend the classes to include additional properties without changing the model on the platform. Is this possible with EF 4 and how can I do this without modifying the .edmx file?
I noticed that the generated classes are partial, so I could create a new incomplete class with the same name to include new properties, but are there any mappings I need to take care of?
ps under normal circumstances, I would prefer to use inheritance and create a new class to store new properties, but again, I do not know how to do this with EF. Any enlightenment here would be greatly appreciated!
Many thanks,
source share