I have created an entity data model and generated a database from it.
One of the entities is called Template
.
Created partial classes to extend the functionality of Template
works fine.
If I create a new class and try to derive from Template
, I get a runtime exception upon instantiating:
Mapping and metadata information could not be found for EntityType 'Template001'
.
How can I work around this? I definitely need to inherit from the EF classes.
EDIT
Does not seem possible. If that is the case, what would be the best way to implement the following requirement: The template entity stores information about templates that each have their own code to execute. That is why I was trying to derive from the entity in the first place.