Tagged Questions

A technique that maps an inheritance hierarchy of objects to a single table in relational database.

learn more… | top users | synonyms

5
votes
0answers
152 views

Entity Framework 4.2 table per hierarchy group by discriminator

I am working on a project using an EF 4.2 code first model. This model contains a TPH inheritance structure for products. I need to group the polymorphic results of this inheritance model on the ...
4
votes
1answer
340 views

Entity Framework table per hierarchy error 3034

I have an Entity Framework model using table per hierarchy. The base class is abstract and there are two derived classes. I want to create associations between these two derived classes and another ...
4
votes
1answer
502 views

Table-per-hierarchy and inheritance implementation issue

I am migrating an old ASP application to a modern .NET version, to cut down on development times we are looking at the .NET 4.0 Entity Framework. However, we seem to have hit a brick wall in our ...
3
votes
2answers
198 views

Entity Framework - Discriminate on multiple values

In a Table-Per-Hierachy scenario is it possible to discriminate on a list of possible values? e.g. for the types Color, DarkColor, LightColor something like Map<DarkColor>(m => ...
3
votes
2answers
1k views

Entity Framework 4 - Inheritance

I am trying to understand the inheritance mappings in EF4. My database has two tables with the following structure: PersonCategory Table: CategoryID (int) (identity) (PK) CategoryType ...
3
votes
1answer
1k views

Is it bad practice to use DiscriminatorFormula for migration of Hibernate databases?

I have an application using Hibernate for data persistence, with Spring on top (for good measure). Until recently, there was one persistent class in the application, A: @Entity public class A { ...
2
votes
0answers
41 views

Fluent NHibernate automapping table-per-abstract-hierarchy / table-per-concrete-subclass

I have classes public abstract class Content : IContent { public virtual Guid Id { get; protected set; } public virtual IPage Parent { get; set; } public virtual DateTime Created { get; ...
2
votes
1answer
222 views

Discriminator issue in inheritance mapping of Grails

I have 4 classes A, B, B1, B2 with inheritance mapping described as below: A (mapped to table A) is the top-most parent class and its inheritance mapping strategy is tablePerHierarchy=false (means ...
1
vote
1answer
248 views

EF4 DB-first: TPH approach?

I know this should not be trivial, but so far couldn't find the resolution... Working with an EF4 DB-First model, using LINQ-to-Entities with POCOs which will be consumed by an MVC3 app. I have ...
1
vote
2answers
225 views

How to change a Domain Class model object from one derived class to another in Grails/GORM

Given the following Grails GORM Domain Classes and using table-per-hierarchy inheritance: class Book { static belongsTo = [ parent: Parent ] String title } abstract class Parent { static ...
1
vote
1answer
371 views

Entity Framework 4 - TPH Inheritance in Features CTP5 (code first) with “IS NULL” discriminator

Hey guys, I'm trying to create a TPH mapping on a hierarchy where the discriminating clause is the classical "IS NOT NULL" / "IS NULL" case. Here is the example, database wise: CREATE TABLE ...
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 ...
0
votes
1answer
25 views

How can I update the concrete class within hibernate's table-per-class-hierarchy strategy?

I've employed hibernate's table-per-class-hierarchy as outlined here. I've got a simple 1-tier hierarchy where the parent includes a number of attributes and the child(ren) include more of the same. ...
0
votes
1answer
36 views

Cannot select table for discriminator (model-first)

I'm trying to kick off a project needing table-per-hierachy. I've done this in the past with NHibernate, but we want to avoid having to hand edit XML mapping files - so are trying to use Entity ...
0
votes
1answer
34 views

How to properly map nested subclasses using hibernate

How do I nest subclasses with Hibernate? For example, I have the following class hierarchy: PageElement - PageParagraph - PageImage - PageVideo - PageAudio - PageQuestion - ...
0
votes
0answers
66 views

Entity Framework - Fluent API - Table per hierarchy - exception

An Order has zero or one OrderActionEntered, OrderActionCompleted and OrderActionProcessed. Actions are stored in one table using Table per Hierarchy(TPH) When I run the below code from console ...
0
votes
1answer
90 views

EF : MVC : ASP: TPH Error - Store update, insert, or delete … number of rows (0). Entities … modified or deleted … Refresh ObjectStateManager

Error Message: "Store update, insert, or delete statement affected an unexpected number of rows (0). Entities may have been modified or deleted since entities were loaded. Refresh ObjectStateManager ...
0
votes
1answer
92 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
178 views

DiscriminatorFormula

If I have a single table where I need multiple columns for discriminator, is my only solution to use a @DiscriminatorFormula? I ask because some prototyping gave us some results that I cannot ...
0
votes
1answer
86 views

EF Table per Hierarchy (TPH) not saving because can't insert value null in Discriminator column

I have a table used for multiply type of category and it contains a Discriminator column named 'ClassName' to specify the type of object to load. The ClassName column is non nullable with a default ...
0
votes
0answers
142 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
112 views

Getting DAOs for Table-per-Hierarchy structure

Let's assume I have a User class and two subclasses Employee and Customer. I implemented this hierarchy as a table-per-hierarchy in DB with a column for specifying the type of user. I need to return ...
0
votes
1answer
286 views

Table per hierarchy layout problems in EF 4.1 with multiple nullable discriminators

I have a table with an int PK, one NOT NULL field, and two NULL string fields. When I go and set up a TPH-style design in EF, I set it up this way: The top level type only has the PK and the NOT ...
0
votes
1answer
50 views

nHiberbate: Table per hierarchy - SchemaExport problem

I am using nhibernate to map the following classes: public class DeviceConfig : EntityBase { public virtual string Name { get { return m_Name; } set { SetValue(ref m_Name, ...
0
votes
1answer
239 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
294 views

Persisting one table per class hierarchy using NHibernate without discriminator?

I have an interface and a class which implements this interface. public interface IPhase { string Description { get; set; } int Id { get; } string Phase { get; set; } } public class ...
0
votes
1answer
701 views

Fluent NHibernate - mixing table-per-subclass and table-per-class-hierarchy

Give the following structure, MyBaseClass { public int Id {get; private set;} } MySubclassWithDiscriminator : MyBaseClass { } MySubclass : MyBaseClass { public string SomeThing {get; set;} } ...
0
votes
1answer
69 views

Table-per-hierarchy mapping when subclasses have not-nullable fields?

I have a class hierarchy with an abstract base class and 4-5 subclasses. I want to use NHibernate's table-per-class-hierarchy mapping method to map these to a single database table to reduce the ...
0
votes
2answers
76 views

How to map inheritance with property returned other inheritance?

Hi I have abstract class Vehicle and two classes that derive from: Car and ForkLift. public abstract class Vehicle { public EngineBase Engine { get; set; } } public class Car : Vehicle { ...
0
votes
1answer
732 views

Multiple Inheritance with Entity Framework with TPH

Further to this question: http://stackoverflow.com/questions/1877411/entity-framework-tph-with-multiple-abstract-inheritance and VS.2008 sp1 .net 3.5 c# I decided to add Organizations and a School. ...
0
votes
1answer
827 views

Entity Framework TPH with multiple abstract inheritance

I'm trying to do a Table Per Hierarchy model in Entity Framework(VS 2008 sp1, 3.5). Most of my models have been very simple, an abstract type with multiple sub-types that inherit from it. However, ...
0
votes
1answer
96 views

Unable set table mapping to Boolean = False

I am trying to set an inheritance in Entity-Framework, I want to set the mapping when BooleanColumn = True. I am unable to do so.