Tagged Questions

An inheritance model used by Entity Framework, one of Microsoft's ORM technologies

learn more… | top users | synonyms

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 ...
3
votes
1answer
824 views

Table-per-type inheritance with EF 4.1 Fluent Code First

I have a pretty straight forward set of database tables, like: Vehicle Id RegNo Car Id (FK of Vehicle.Id) OtherStuff Bike Id (FK of Vehicle.Id) MoreStuff My class model is as you'd expect: ...
3
votes
1answer
395 views

Entity Framework 4.1 - TPT Eager Loading - “The ResultType of the specified expression is not compatible with the required type”

I have a model with TPT inheritance. Location (abstract) Street (derived from Location) GoogleStreetView (1 Street -> 0..1 GoogleStreetView) Each of the above has it's own table. All was working ...
3
votes
5answers
7k 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
30 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 ...
2
votes
1answer
219 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 ...
2
votes
0answers
346 views

Problem with EF4, SQLite, TPT hierarchy and batch insert

I've been struggling for a little while with the following issue using EF4 and SQLite ADO.NET provider: I have a model with a TPT hierarchy: There is an abstract base entity (Source), then first ...
2
votes
2answers
775 views

Entity Framework Table Per Type Performance

So it turns out that I am the last person to discover the fundamental floor that exists in Microsoft's Entity Framework when implementing TPT (Table Per Type) inheritance. Having built a prototype ...
2
votes
0answers
163 views

Cast to a property reference to a subclass in Entity framework (TPT)

I've got the following scheme: (not really the code, just to get the idea) class Person; class Employee : Person; class Company { public Person ContactPerson { ...} public ...
1
vote
3answers
55 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, ...
1
vote
1answer
40 views

A couple of issues with EF 4.2 and inherited class association properties

I have a couple of issues with EF 4.2 and the fluent api with Code First design approach and base class property inheritance (Table Per Concrete Type)... 1) Fluent Api to ignore base class property ...
1
vote
0answers
181 views

Entity Framework 4.2 - How to realize TPT-Inheritance with Database-generated Primarykey Value?

I want to use the EF (4.2) in the following scenario: There exists a database already (so I chose the database-first approach) and it is a SQL Anywhere DB. I want to use persistence-ignorant ...
1
vote
1answer
61 views

How do I query just one level of a table-per-type mapping?

I'm using Entity Framework 4.1's code first approach to map a class hierarchy to a series of tables. I have the following classes defined: [Table("FooBases")] public class FooBase { public int ...
1
vote
1answer
443 views

Entity Framework 4 - TPT Inheritance in Features CTP5 (code first): rename foreign key column on inherited table

I'm trying to convert an xml Entity Framework model to Code First (CTP5) one. I have to model a hierarchy which fits quite well the TPT pattern. The only problem I have is that the primary key/foreign ...
1
vote
1answer
170 views

EF1: Filtering derived types of entity class using .OfType<> by passing a string value

I have a situation where I'm trying to filter a LINQ select using a derived sub class. ctx.BaseEntity.OfType<SubClass>() - this works fine. However I'd like to do this using a string value ...
1
vote
2answers
211 views

How do I apply Table-per-type EF4 to create records in sub-tables inheriting from aspnet_Users?

From the regular aspnet_Users table I have created two sub-tables with one to one relationship on UserId. Table UserClient -UserId int PK -ClientNumber int Table UserEmployee -UserId int PK ...
1
vote
1answer
338 views

EF4 TPT insert inherited table

Supposing my Application consumes two tables represented as two entities: Person and Employee. And: I am not allowed to make changes in table person. (I suggest get data from a view) Employee must ...
0
votes
1answer
59 views

Entity Framework 4.1, Table Per Type Inheritance

Could someone suggest a workaround for a C# limitation? I need for two different types to both derive from the same base type. In my example, Employees and Users are People. An Employee can also be ...
0
votes
1answer
94 views

TPH vs TPT vs TPC and OR mappers

I'm working on a datamodel that has a set of types that share some common fields such as Id, Name, Description. To be more concrete: The Document class has a list of Attributes. These Attributes are ...
0
votes
0answers
143 views

Entity Framework 4.1 - Should I use Table Per Type inheritance mapping or some form of delegation?

The application I'm developing is using Entity Framework 4.1 and Code First. My model contains over 20 entities. The entities all share some of the same properties. But, in addition to the common ...
0
votes
1answer
139 views

Table-per-type inheritance with EF 4.1 Fluent Code First

I have the following tables Item ------------------- ItemId (PK) Name Properties ------------------- PropertyId (PK) Name ItemProperties ------------------- ItemId (FK) (CPK) PropertyId (FK) (CPK) ...
0
votes
1answer
337 views

Entity Framework 4.1, Table Per Type Inheritance and Lookup Tables

Using table per type inheritance is it possible to have the same data with the same key in more than one of the derived types? e.g. Base Type : [Table("BaseType")] public abstract class BaseType { ...
0
votes
1answer
74 views

Entity Framework table-per-type advice needed

I need to implement solution with 1 base class and 3 sub-classes (4 classes) Base class: User Sub-classes: Client, OfficeUser, Employee In my database I have only 3 tables : Users, Clients and ...
0
votes
1answer
241 views

EF: Can I mix TPH and TPT when abstract base and a few concrete types are in TPH-table and other types have their own table?

First of all, these questions are similar but definitely not the same: Can I mix Table per Hierarchy and Table per Type in Entity Framework? - Refers to a different scenario. Entity Framework: mix ...
0
votes
1answer
52 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
3answers
350 views

Entity Framework 4.1 Table-Per-Type Mapping (SOLVED)

I am trying to write a project using the code-first approach and I have run into the following problem public class BaseType { [Key] public int id { get; set; } public string ...
0
votes
1answer
96 views

How can I associate a new entity with an existing entity in EF4?

I've got a Patient entity (storing up-to-date information about a patient) and a TreatmentPlanPatient entity (a copy of a patient's date as it was when the "treatment plan", another entity not ...
0
votes
2answers
299 views

EF Table Per Type with Navigation property on Sub Type Table

I'm hoping someone out in the SO community will be able to help me out here. Simplified Background: I'm using Entity Framework V1 to build my class structure that is outlined below, I'm using Table ...
0
votes
2answers
366 views

How can I add inheritance to an object defined in an EntityDataModel (EF 4)?

I have a simple 2 object inheritance defined in an EF model, Person <- User. Person is the base entity/class, it is not abstract, and it contains fields like firstname, lastname, email. User is ...
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 ...
0
votes
1answer
2k views

Inheritance problems with Entity Framework (table per type)

For part of the project I'm currently working on, I have a set of four tables for syndicatable actions. One table is the abstract base for the other three, and each table is represented in my EF model ...