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

learn more… | top users | synonyms

1
vote
1answer
182 views

Entity Framework 5: Table-per-Type mapping with concrete base class

I'm working on an EF5 Code First application, and things have been going well so far, but I've hit a bump, and I'm hoping someone can suggest a solution. Basically, I've got a base class, and a few ...
0
votes
0answers
27 views

table-per-type inheritance in WCF Data service

I use C# Language of Microsoft Visual Studio 2010 Professional for my Project and I have problem. I have two Solutions. The first Solution there is Web Project Template and it contains : 1-ADO.NET ...
0
votes
1answer
44 views

Database Table per Type with exclusive Sub-Types

In a table per type architecture, say I have a type Person with two sub-types student and teacher. A student cannot be a teacher, and a teacher cannot be a student. Below is the best way I know how ...
1
vote
2answers
218 views

BreezeJs Fails to Load Metadata for EF Code First Schema with Inherited Class

Just started trying out Breeze today, long time EF user - think I found a bug in Breeze, but I may be doing something wrong - want to know which it is: I have a simple hierarchy in EF Code First: // ...
0
votes
1answer
79 views

EF COdeFirst Table Per Type setup with list reference to the base class

i am setting up the ef code first with table per type. See the following structure. The idea is to store inherited class information in its own table and at the same time a derived class can have ...
1
vote
0answers
133 views

Two way binding for a control in a radgrid editform that conditionally binds if the dataitem is of derived type

I am running into the classic can't use Bind in C# problem below. I can't use eval because I need 2-way binding. This textbox is sitting inside a rad grid edit form. ...
1
vote
1answer
314 views

Entity Framework / code first / table-per-type inheritance - implementing a one-to-many association between a derived class and a concrete class

I'm using MVC4 in VS2012, and I'm following a table-per-type inheritance approach. I'm trying to use the Seed() method to add data to my database. I have the following classes: LandLord ...
0
votes
1answer
133 views

Entity Framework - how to seed test data to entities that use table-per-type inheritance?

I'm using EF5 code-first, migrations and table-per-type inheritance. I have some classes that inherit from other classes. For example Tenant and Landlord inherit from UserProfile. I'm using the ...
1
vote
1answer
151 views

Entity Framework table-per-type: 1:0…* FK relationship with a derived class - is FK of base class or derived class?

I have a class Tenant which is of the abstract type UserProfile. I'm using the table-per-type inheritance approach. A tenant can represent a group of tenants. A TenantGroupMember is one of such a ...
0
votes
2answers
50 views

TPT - How to query appropriate child when an instance of base class is selected?

I'm attempting to determine if my current design using a Table-Per-Type hierarchy is the best way for me to go about the following: For example, I have 3 child classes (Manager, Executive, Employee) ...
0
votes
1answer
153 views

Entityframework 4.3 codefirst using TPT and discriminator

I have these three models: public class Equipment { public int ID { get; set; } public string title { get; set; } } [Table("Vessels")] public class Vessel:Equipment { public string Size ...
0
votes
1answer
116 views

EF 5.0 table-per-type inheritance gives strange queries

I have standard table-per-type inheritance case in code first approach to an existing schema: [Table("base_object")] public partial class BaseObject { public BaseObject() { } [Key] ...
0
votes
1answer
58 views

Need insight on TPT EF4 when Inserting with Dynamic Data

First the error I have: All objects in the EntitySet 'Z10Entities.Accounts' must have unique primary keys. However, an instance of type 'DAL.Model.CreditCardAccount' and an instance of type ...
0
votes
0answers
109 views

Enity Framework code first with abstract class (error 3013) mapping fragments

I faced a brickwall trying to map derived classes in my project which consist of several base and derived classes: public abstract class Entity { public virtual int Id { get; set; } } public ...
1
vote
0answers
76 views

Set entity framework DDL generation language

I am using Entity Framework with Visual Studio 2012 or 2010. I am working together with colleagues who have a different language version (German) of Visual Studio installed. Some of our models use ...
6
votes
1answer
375 views

EF 4.3 Code First: Table per Type (TPT) with Composite Primary Key and Foreign Key

So I'm trying to use Code First with Fluent to map a base class with one derived type where the tables schema is a Table-per-Type arrangement. Also, the derived type has a many-to-one relationship ...
1
vote
0answers
114 views

Converting a EF CodeFirst Base class to a Inherited class (using table-per-type)

I am using EF Code First and have two classes defined as follows: public class User { public int Id { get; set; } public string Username { get; set; } public string Email { get; set; } } ...
-1
votes
1answer
91 views

One Controller with many views for table per type

I have a table per type structure, I want to write an mvc razor application where my only parameter in the mvc routing is the primary key ID. From there the application will establish which type in my ...
1
vote
0answers
42 views

Entity Framework Table-Per-Type inheritance with overlapped (non-disjoint) entities

I'm using EF4 with DDD and layers, and I need to implement a Table-Per-Type hierarchy with non-disjoint (overlapped) entities in my data model, a model like this. Anyway i cannot figure out how to do ...
0
votes
1answer
131 views

Entity Framework TPT Inheritance Move Data Between Tables

I am looking at using TPT Inheritance with EF. I have the following tables. StockLocation StockLocationType StockLocationType contains the following types: Bulk Pickable Secure I was thinking of ...
4
votes
1answer
540 views

EntityFramework (CodeFirst) inheritance mapping: mix of TPT and TPC

We are making an EntityFramework CodeFirst DAL over a legacy database (which means that we are mostly stuck with whatever design errors it has). Domain model is (pretty) simple: we have abstract ...
1
vote
1answer
259 views

Entity Framework table per type - select from only the base type columns

We are using EF 4.3 Code first and have an object model like so: class Content { } class Product:Content { } class News:Content { } These are mapped as Table per Type. There are scenarios ...
0
votes
1answer
271 views

How to map key properties to differing column types on inherited entities in EF CodeFirst?

I'm trying to implement a TPC inheritance model in EF 4.3 CodeFirst for an existing Oracle database (over which I have no control). I have several sub-types that each map to its own table. ...
10
votes
3answers
841 views

Inheritance and composite foreign keys - one part of the key in base class, the other part in derived class

I am having problems to create an Entity Framework Code-First mapping for the following sample database schema (in SQL Server): Every table contains a TenantId which is part of all (composite) ...
0
votes
0answers
195 views

How to have an entity inherit from another base entity and map to db using TPC with EF 4.2?

Say I have an entity model aggregate for Activity, like so: public class Activity : Entity { public int PersonId { get; set; } public virtual Person Person { get; set; } public int Number ...
0
votes
1answer
159 views

How to setup table per type inhertiance in entity framework when the derived table uses its own primary key?

Suppose I have a table structure such as: Order ID int, primary key Name, string OtherOrderFields... RetailOrder ID int, primary key OrderID, foreign key RetailOrderFields... In ...
0
votes
1answer
161 views

How Polymorphic Association with TPC Inheritance Mapping is Treated in Professional Projects?

While designing & developing a data-centered project using Entity Framework, I have spent too much time to find a way to accomplish one of the following but have come across nothing practical. ...
1
vote
1answer
3k views

How to implement inheritance Table-Per-Type in Entity Framework 4.3 via Code First approach?

I have this class hierarchy in code: [Table("A")] public class A : IIdentification { public int id { get; set; } } [Table("B")] public class B : A { ...
1
vote
1answer
271 views

Code First TPT Modeling where item can be multiple derived types

What is the best way to model the following kind of relationship in Code First? abstract Person Student: Person Teacher: Person Researcher: Person ...many more... Where a ...
2
votes
2answers
332 views

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

Use-case example A user have registered on website (adding record to Users table). Then goes to email and confirms registration. The confirmation link redirects to page with person edit form, a user ...
2
votes
3answers
692 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, ...
2
votes
1answer
173 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
1answer
339 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
1answer
332 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 ...
1
vote
0answers
460 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 ...
0
votes
1answer
358 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
288 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
254 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) ...
1
vote
1answer
184 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 ...
3
votes
1answer
3k 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: ...
0
votes
1answer
440 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 { ...
3
votes
1answer
867 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 ...
2
votes
1answer
338 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
2answers
160 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 ...
1
vote
1answer
643 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
103 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
684 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 ...
2
votes
0answers
443 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 ...
0
votes
1answer
120 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 ...
1
vote
1answer
610 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 2