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 ...
2
votes
2answers
819 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
171 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
1answer
178 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 ...
0
votes
0answers
81 views

EF Code First: separate creation of objects in db with TFT inheritance

I have a simple 2 object Table-Per-Type inheritance defined in an EF model. Entities public class User { public Guid Id { get; set; } public string Name { get; set; } public string ...
0
votes
1answer
92 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
78 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
98 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
315 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
379 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
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 ...
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 ...