Tagged Questions
3
votes
5answers
8k views
Unable to save Entity Framework Inherited types
I have implemented some table-per-type inheritance in my data model (basically have a "BaseEntity" type with all the base information for my items and a "Employer" type that inherits from the ...
2
votes
1answer
238 views
Entity Framework 4.1 updates to TPT and TPCT models?
I last tried out the Entity Framework when it was at version 4.0. My experiments with it, confirmed by some posts on the MSDN forums and elsewhere, indicated that the TPT (table-per-type) and TPCT ...
0
votes
1answer
720 views
Error when trying to filter on a property of an entity inheriting from another in Entity Framework
When I have entity B inherit from entity A using table-per-type for storage and try to write a Linq query that filters on a property on B, for example
Function(b) b.name="Joe"
I get the error
...