Tagged Questions

6
votes
1answer
2k views

Linq to Entities, Table per Type and Nullable Foreign Key Relationships

I'm using Linq to entities applying a Table per Type approach. This has been going very well, up to now. I have the following setup: Parent Table Child Table (Inherits from parent) Grand Child Table ...
2
votes
1answer
29 views

Entity Framework Generated SQL - Table per Type - Performant?

I am changing my old ADO.Net ways for the Entity Framework. My Products class is made up from about 20 tables (3 of which I have combined so far into the single class), there are 5 Product type tables ...
1
vote
3answers
54 views

Entity Framework, Table Per Type and Linq - Getting the “Type”

I have an Abstract type called Product, and five "Types" that inherit from Product in a table per type hierarchy fashion as below: I want to get all of the information for all of the Products, ...
0
votes
1answer
51 views

Checking Parent Type TPT EF4

I have a TPT scenario in EF4 with an abstract base class. I need to wite a linq query against a collection of children types to get the value from a field of one type of parent. eg. ThisChild = ...
0
votes
1answer
717 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 ...