Tagged Questions

Joined-subclass is a mapping strategy in Hibernate and NHibernate that is also known as "Table per subclass".

learn more… | top users | synonyms

10
votes
1answer
286 views

Fluent NHibernate JoinedSubClass is obsolete

I wonder about something. I'm sitting here with a solution there I have 1 superclass that has 2 subclasses and I'm currently mapping this using JoinedSubClass, but I get that this method is obsolete, ...
5
votes
3answers
447 views

NHibernate Many-To-One on Joined Sublcass with Filter

I have a class setup that looks something like this: public abstract class Parent { public virtual bool IsDeleted { get; set; } } public class Child : Parent { } public class Other { public ...
4
votes
2answers
639 views

Fluent Nhibernate - Specify foreign key constraint name between class and joined subclass

I think this should be simple, but I can't figure out how to do it. Suppose I have the following maps: public class AnimalMap : ClassMap<Animal> { Id( x => x.Id); } public class CatMap: ...
4
votes
2answers
672 views

NHibernate - Retrieve specific columns and count using criteria querie

This is my mapping file: class name="CRMStradCommon.Entities.OportunidadEntity,CRMStradCommon" table="oportunidad"> <id name="Id" column="id" type="int"> <generator ...
2
votes
0answers
42 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
413 views

NHibernate (3.1) subquery on subclass not joining base class table

The following is an abstraction of an actual problem I'm having. public class Base { public virtual string Id { get; set; } public virtual string Foo { get; set; } } public class Sub : Base ...
2
votes
2answers
115 views

How can I model this object hierarchy in Fluent NHibernate without violating DDD principles?

I am trying to build a domain model that will allow me to manage Contracts. The Contract class is my aggregate root, and it has a single property right now, which is Reviewers. Reviewers, in the ...
2
votes
0answers
2k views

Fluent nHibernate - DiscriminateSubClassesOnColumn with multiple tables?

I've been trying to wrap my head around subclasses and joined subclasses in Fluent nHibernate for a few days now without making any sort of headway. I've looked at the wiki but it doesn't seem to ...
2
votes
1answer
305 views

how to map a one-to-many collection to a joined subclass when key is in the parent class

I'd like to map a one to many collection to a subclass but the key of the collection is an attribute of the parent class. Currently i'm mapping AbstractFoo Foo and Bar class like this : <class ...
1
vote
0answers
58 views

Fluent NHibernate trying to map subclass of subclass using table-per-subclass

I am building an application with heavy inheritance and have a part where there exists classes, A, B and C with: class A class B : A class C : B I implemented subclass mapping as a ...
1
vote
1answer
91 views

Loading collection in base class from joined-subclass with NHibernate

I have a class with some properties and a collection of names like so: public class A : BaseObject { private Int32 zindex; private Int32 atNmNr; private IList<G020_Namen> names = ...
1
vote
1answer
364 views

With Hibernate joined-subclasses, is it possible to duplicate columns in super and sub-tables *and* keep them in sync?

So I have an interesting situation. I've inherited a big mess of code where the original developer decided to forego using inheritance in favor of enums and switch statements...it's a perfect example ...
1
vote
0answers
306 views

Controlling result list from org.hibernate.Query.list when using joined subclass

I have a User class, which is mapped to the "USERS" table in database with Hibernate. There is also a class ApplicationUser, which extends the User class and is mapped as a joined subclass in ...
1
vote
2answers
542 views

Inheritance Joined Strategy With Multiple Non-Keyed Columns

I have two classes Foo and Bar mapped to two different tables, and I'd like them to use the JOINED inheritance strategy, but joined using two non-keyed columns. The schema is pretty weird, but I'm ...
1
vote
2answers
593 views

Hibernate subclass with foreign key relationships

I need some help defining the following object hierarchy/ database relationship in Hibernate From the object sense – Agent is inherited from Person and Agency is inherited from Organization. they are ...
1
vote
1answer
326 views

How can I generate subclass joins in a NHibernate SqlQuery?

I am having problems getting NHibernate to generate a SQL query that actually runs without errors, as the query is missing joins for my subclasses. Lets take this minimal example: class Page { ...
1
vote
3answers
394 views

NHibernate Caching Objects Based on Parent Class's ID

I have the following definitions for the Animal and Dog types. Note that the ID for the object is the AnimalID: <class name="Animal" table="Animals"> <id name="Id" type="System.Int32" ...
1
vote
1answer
582 views

NHibernate search specific subclass

Is it possible to filter on a particular joined-subclass in NHibernate? For example, I have the following classes: Pet { Name } Cat: Pet { Paws } Budgie: Pet { Wings } Person { Pets } I want to ...
1
vote
3answers
906 views

jpa how to create new entity with same id as parent entity (JOINED Inheritance)

my question is very similar to Changing the type of an entity preserving its ID, but instead i´m using InheritanceType.JOINED instead of Table_per_class. This means i don´t to change any table, just ...
0
votes
0answers
28 views

NHibernate multiple joined subclasses and duplicate column names using criteria

Assume we have this entity structure: Document - DocumentA - DocumentB In base class Document we have fields Id, Name, CreateDate. In joined subclass DocumentA we have fields Book, Pages. And in ...
0
votes
0answers
51 views

How to use maven to run unit test which tests the joined sub-class object

I use spring roo to the generate the unit test for joined sub-class object. The joined sub class object is like below. @RooJavaBean @RooToString @RooEntity(inheritanceType = "JOINED", persistenceUnit ...
0
votes
2answers
157 views

NHibernate: JoinedSubclass, HasMany

I use FluentNHibernate (Automapping) for mapping, NHibernate 3.2 for data access and SchemaExport to generate my database. I have a class Principal which is the base class for User and Usergroup. ...
0
votes
1answer
130 views

NHibernate cascading deletes in associated joined subclasses

I'm currently working on a small PoC project and decided to take NHibernate for a spin for the persistence part. I have defined the following domain entities: Location: abstract class representing ...
0
votes
1answer
123 views

Nhibernate multiple levels hierarchy mapped as joined subclasses fails to work with base class property

I have following hierarchy: ClassA->ClassB->ClassC->ClassD ClassB has PropertyA. All classes are mapped as joined subclasses with table per-class. Mapping is parsed with no errors but I ...
0
votes
0answers
90 views

Change column for joined class mapping in Fluent NHibernate Automapping

I have an inheritance public abstract class UserEntity : Entity { public virtual int Id { get; protected set; } } public class Employee : UserEntity { public virtual string Email { get; set; ...
0
votes
1answer
454 views

Unknown entity issue for joined subclass when using annotation

I met exception when using annotated joined subclass, i don't know how to correct it, please help. Exception is: org.hibernate.MappingException: Unknown entity: B Code: Class A @Entity ...
0
votes
1answer
703 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
370 views

Hibernate cannot create joined sub-class table while using annotation

I am new to Hibernate and I cannot create joined sub-class table while using Hibernate annotation. Here is my code. This is the main class. @Entity @Table(name="CRM_User") ...
0
votes
1answer
328 views

NHibernate - Table per subclass inheritance causing “Invalid Cast” exceptions

I have a simple table-per-subclass inheritance with the following NHibernate mapping <hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" default-access="property" auto-import="true" default- ...
0
votes
4answers
99 views

Java Subclass $

I am new to Java and might be asking a basic question which might sound silly to some. After I compile my Main Java class most of the subclasses are displayed as $ in the folder. I copy the complied ...
0
votes
2answers
603 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*/ } // ...
0
votes
1answer
221 views

Joining to a subclass of a Table per Class hierarchy in NHibernate

I'm using the table per subclass mapping inheritance in NHibernate. I have a parent Attribute table and a child AccountAttribute table. The child AccountAttribute table has another foreign key in it ...
0
votes
1answer
74 views

How do I specify the name of the PK in the subclass table when using SubClass in FluentNHibernate?

I am attempting a subclass mapping in Fluent NHibernate. In the parent class mapping, I have to specify the ID column name to prevent FNH guessing incorrectly: Id(x => x.Id).Column("UserId"); I ...
0
votes
1answer
441 views

simple joined-subclass example tries to update the identity column of the base table

I must be missing something very important in the concept to get this error so any help appreciated. I get ----> System.Data.SqlClient.SqlException : Cannot update identity column 'ProductID'. when ...
0
votes
1answer
2k views

NHibernate Subclass of a Joined-Subclass problem

I have an application that has a core assembly with base classes that I need to inherit from.. I need to save these to the database and after reading about NHibernate decided to use it. However I ...
0
votes
1answer
366 views

ADO.NET Entity Framework and a Joined Subclass

Can you do a Joined Subclass in the Entity Framework version 1? How do you approach the issue? Joined Subclass: http://www.xylax.net/hibernate/joinedsubclass.html ...