A technique that maps an inheritance hierarchy of objects to a single table in relational database.
0
votes
1answer
28 views
Tell Entity Framework to use the correct name for this Foreign Key
Edit: I should probably include the Email, Address, and Phone entities:
Public Class AddressEntity
Inherits AddressComplexEntity
<IgnoreForCompare()>
Public Property AddressId() As ...
0
votes
0answers
76 views
Entity Framework 4: Dynamic Proxy error on a seemingly simple query?
I have a Linq To Entities query I am making in my POCO Entity Framework application, that looks like this:
var orders = stateRepository.Get()
.OfType<OrderedState>()
...
0
votes
0answers
91 views
Entity Framework: Is Table Per Hierarchy the right inheritance pattern for this situation?
Imagine I have a hierarchy of objects I want to store in my Entity Framework 4.1 data store. I am creating them using Code First. They look like this:
BasicState
has many -> StatefulEntities
...
1
vote
0answers
122 views
Entity Framework Code First TPH inheritance - can different child classes share a field?
I have an Entity Framework Model created using Entity Framework Code First that is using Table Per Hierarchy inheritance where the structure looks a little like this:
public abstract class BaseState
...
1
vote
1answer
132 views
Entity Framework Code First - select based on type of child TPH class
I am currently working with Entity Framework 4 on a project that is using Table Per Hierarchy to represent one set of classes using a single table. The way this works is that this table represents ...
0
votes
2answers
78 views
Parent Child Hierachy in asp.net
I want to show family hierachy in asp.net.
I have table as Family with attributes ParentID, ChildID, Name. Table have seft join on ParentID and ChildID. How I show the data from database. The ...
1
vote
0answers
131 views
Entity Framework 5.0 inheritance with multiple assemblies
I'm using Entity Framework 5.0 with code-first approach plus inheritance for my business objects represented by Table Per Hierarchy.
I'd like to have the following structure:
//Assembly 'DataAccess' ...
1
vote
0answers
35 views
Smartest approach to changing from one subclass to another (updating the discriminator value)
Background: I'm implementing persistence for the following classes:
class Person
abstract class ContactInfo
Email extends ContactInfo
SnailMail extends ContactInfo
Each Person has a reference ...
0
votes
1answer
105 views
Problems setting up EF5 and a Lookup Table
I'm trying to design a code-first model with a TPH Lookup Table like the following:
public abstract class LookupValue
{
[Key]
public string Value { get; set; }
}
public class PaymentTerm : ...
1
vote
1answer
179 views
Does Breeze work with Table Per Hierarchy (TPH)
I'm trying to plug BreezeJs into an existing datastructure and getting an error in the meta data fetch. I can replicate this by adding the following to the CarBones sample
namespace CarBones.Models
{
...
0
votes
1answer
100 views
SaveChanges doesn't work for TPH entities
I use Entity framework with Generate T-SQL Via T4 (TPH).xaml (VS) and SSDLToSQL10.tt (VS) templates.
I have a table
TABLE [dbo].[Users](
[UserId] [int] IDENTITY(1,1) NOT NULL,
[UserName] ...
1
vote
1answer
77 views
Improving my database design using TPH Inheritance
This is my current database design, for the moment just look the student, teacher and classes tables.
I'm trying to convert some tables into news using TPH Inheritance. For example.
Create a new ...
0
votes
1answer
215 views
Table Per Hierarchy & Inherited Relationships
I'm using Entity Framework 5, targeting .Net 4.5. For the life of me I can't figure out what I'm doing wrong that's causing the following error while trying to work with Table Per Hierarchy and ...
1
vote
0answers
36 views
Detect loops in hierarchy using SQL Server query [duplicate]
Possible Duplicate:
SQL - detecting loops in parent child relations
I have a simple table with 2 columns id and parentid:
id | parentid
------------------
2 1
3 2
4 ...
3
votes
0answers
152 views
how to generate table per hierarchy using entity framework 5 model first
I'm using Visual Studio 2012 with entity Framework 5 model first.
I would like to generate my database using a table per hierarchy strategy, but can't find that option.
The Entity Designer Database ...
0
votes
1answer
81 views
NHibernate missing SqlParameter for overriden property
I'm trying to implement table-per-hierarchy approach, using FluentNHibernate AutoMapping.
I have a base class and three child classes. The third child class overrides a couple of properties of the ...
0
votes
1answer
229 views
Code First - Mapping when the Discriminator IS NULL or NOT NULL
I want to use TPH Inheritance in EF5 Code First. I want to base it on whether a column in the database is null or not.
I found this link indicating it was not possible in EF4. Entity Framework 4 - ...
0
votes
0answers
187 views
Entity Framework Table per hierarchy using TypeID both as property and condition
I'm implementing a domain tree structure using entity framework + mvc.
I use JSTree to present the org structure.
Note that in that model scheme i use the TypeID property both as a condition of my ...
0
votes
1answer
292 views
EF: select all entities of subclass (inheritance)
I am using the Database first approach and DbContext.
I have several inheritance structures (TPH) in my data model.
But DbContext only creates one DbSet for the base class, and none for the ...
0
votes
1answer
257 views
EF, Table per Hierarchy, property in abstract class
I'm wondering if I can use virtual properties defines in a base class (abstract) to create a link with an other concrete type.
For example :
public abstract class AbstractService
{
public int Id ...
0
votes
2answers
237 views
C#, Entity framework, TPH
I have a problem with a TPH mapping.
Here are the classes :
Abstract service (base class)
[Table("Services")]
public abstract class AbstractService : IAuditedObject
{
public int Id { get; set; }
...
1
vote
2answers
420 views
EF: TPH implementation with Fluent mapping throws Invalid Column Name exception
Here is my implementation.
public partial class Person
{
#region Constructors
public Person()
{
PersonExpirableCredentials = new ...
0
votes
1answer
281 views
Entity Framework Table Per Hierarchy restrictions
I have very big table in my Database and a can't modify it.
So i have BaseEntity type for table.
I have several children (entity1, entity2) and i'd like to map each type to same column ("Date") and ...
0
votes
1answer
156 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
183 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 ...
4
votes
0answers
384 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; ...
0
votes
1answer
335 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
- ...
5
votes
1answer
428 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 ...
1
vote
1answer
381 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
360 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
1answer
423 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
362 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
289 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 ...
3
votes
1answer
870 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 ...
0
votes
1answer
274 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
406 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
100 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, ...
1
vote
1answer
645 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 ...
1
vote
1answer
2k views
EF4.1 Exception creating Database with table-per-hierarchy inheritance
I have created a very simple project to demonstrate table-per-hierarchy inhertiance. In my unit test which tries to generate the database, i get one of a number of errors depending on the config:
...
0
votes
1answer
781 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 ...
3
votes
2answers
485 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 => ...
2
votes
1answer
526 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 ...
0
votes
1answer
1k 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;}
}
...
1
vote
2answers
549 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
633 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
341 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
1answer
175 views
Mapping fragments exception with Table-per-Hierarchy (Entity Framework 4)
If i have SQL Server tables like this:
Location
----------
LocationId int PK
Field1 int
Field2 int
etc
Score
------------------------------------
LocationId int PK, FK
IsSingleLevel bit PK ...
7
votes
1answer
1k views
Entity Framework 4 Table Per Hierarchy - How To Define Navigational Properties On Children?
I currently have a Entity Framework 4.0 model in place with Table Per Type (TPT), but there are a few performance issues (lots of LOJ's/CASE statements), as well as an issue mapping between two ...
5
votes
3answers
3k 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 ...
0
votes
1answer
129 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 ...