The discriminator tag has no wiki summary.
5
votes
0answers
195 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 ...
3
votes
1answer
537 views
Doctrine 2 - How to use discriminator column in where clause
I was used discriminator column in where clause like this:
//f = root entity
$qb = $this->createQueryBuilder('f');
$qb->add('where', 'f.format = \'image\' OR f.format = \'text\'');
I've got ...
2
votes
1answer
279 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
95 views
Eclipselink lazy loading issue for objects with discriminator column
We have following hierarchy in our application:
@MappedSuperclass
public abstract class AbstractDemandOrMeasureBE {
}
@Entity
@Inheritance
@DiscriminatorColumn(name = "DISCRIMINATOR", ...
1
vote
1answer
307 views
Hibernate 4: persisting InheritanceType.JOINED discriminator column values
I have a simple JOINED hierarchy of documents:
CREATE TABLE Documents
(
id INTEGER NOT NULL,
discriminator ENUM('official','individual','external') NOT NULL,
file_name VARCHAR(200) NOT NULL,
...
1
vote
0answers
148 views
JPA OneToMany with inherited entities using DiscriminatorOptions and orphanremoval
I've a problem, that I can't solve for days now. I have read many docs, searched many forums, but found no solution.
I've inherited class as the code shows below:
@Entity
@Inheritance(strategy = ...
1
vote
1answer
90 views
Why is my discriminator being returned as a proxy?
I have a Status property in one of my POCO's that acts as a discriminator (very similar to using an enum).
Here is part of the HBM that has the Status column.
<many-to-one ...
1
vote
1answer
66 views
How to make discriminator table more useful
I'm trying to replicate this table structure from this article.
Here are my POCO's and mappings.
POCO's
public class Item
{
public virtual int Id { get; set; }
public virtual Status ...
1
vote
2answers
913 views
Cannot rename Discriminator column in Entity Framework 4.1 Code First database
I have a model hierarchy configuration like so:
[Table("A")]
abstract class A { }
class B : A { } // treated as abstract
[Table("C")]
class C : B { }
This results in a TPH for A and B, and a TPT ...
1
vote
1answer
244 views
Nhibernate / hibernate discriminator in subclass
I have a subclass with a discriminator, can i have another discriminator in a subclass
I'll try to explain
One discriminator is in Person Table may be type and i have two subclasses Student and ...
1
vote
0answers
199 views
JPA: Can I define a discriminatorColumn on a entity property that is not in the same entity?
Given I have Entity A which has a Many-To-One relation to Entity B. Entity B has a property (kind of enum) that I would like to use as Discriminator of certain subclasses of Entity A. Can I define ...
0
votes
1answer
23 views
Bi-directional many-to-many JPA mapping with subtypes
My basic scenario is a bi-directional many-to-many relationship that is being mapped with JPA. Simple enough. However, I need to add a 'type' to the mapping, and I'm struggling with the best ...
0
votes
1answer
45 views
Inheritance with SINGLE_TABLE strategy in JPA and @Discriminator in getter
Problem with Inheritance in JPA Entities with SINGLE_TABLE strategy. In getters @Discriminator reduce range of inheritance.
I have the following structure:
@Entity
...
0
votes
1answer
13 views
Code First: Query by Discriminator. I know, I'm not supposed to need to
I have created TPH code-first tmodel and added the NotMappedAttribute on the required discriminator column. I can add DbSets to my context for the subclasses and query by these typed sets and ...
0
votes
1answer
47 views
Exposing a discriminator column as a property in the hbm file
We have a table in our system that stores resource key/value pairs. There are two columns to store the value; a VARCHAR column for smaller values and a CLOB for larger values. On the Java side, they ...
0
votes
1answer
37 views
How can I change Discriminator (__Disc__) field while it is used as a condition
I have to update and change Discriminator(_Disc_) field of a table while mapped entities doesn't have it as an entity member. any solution?
0
votes
1answer
116 views
NHibernate table per subclass using discriminator mapping - how to define a filter on the joined table?
Lets assume I'm dealing with the next situation
(taken from: http://knol.google.com/k/nhibernate-chapter-8-inheritance-mapping#8(2E)1(2E)3(2E)(C2)(A0)Table_per_subclass(2C)_using_a_discriminator )
...
0
votes
0answers
92 views
Discriminator value from separate table in Hibernate inheritance mapping
I have two tables, price_feed and price_feed_type. Price feed will contain the data for different implementations of price feeds.
Now, this would usually be done through the <discriminator> ...
0
votes
2answers
94 views
Hibernate - Should I use a discriminator?
I am taking a table per subclass approach to map some data using hibernate. Typically at the database layer I would introduce a type column in the abstract table and it's subtables, which would ...
0
votes
2answers
361 views
Hibernate JPA Discriminator Column not appended to the generated Query
I have an abstract entity using DiscriminatorColumn and is subclassed by various entites. Now, when I'm querying named query in the abstract class, it throws an error saying ...
0
votes
1answer
356 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
2answers
76 views
One-to-one relationship between one type and sub-classes of another type using Hibernate
Using Hibernate, I am trying to implement a one-to-one relationship between one fixed domain type A and another domain type B whose type be any type which implements a certain interface.
Situation:
...
0
votes
2answers
672 views
NHibernate Discriminated Subclasses of a Joined-Subclass
Here's my heirarchy:
class abstract Entity { /*members*/ } // mapped to entity table
class abstract User : Entity { /*members*/ } // mapped to user table
class Employee : User { /*no members*/ } // ...