Tagged Questions

5
votes
2answers
3k views

Composite Key/Id Mapping with NHibernate

i have the following tables in my database: Announcements: - AnnouncementID (PK) - Title AnouncementsRead (composite PK on AnnouncementID and UserID): - AnnouncementID (PK) - UserID (PK) - DateRead ...
4
votes
1answer
314 views

NHibernate navigators mapped to the part of a composite key problem - legacy database usage

We have a legacy database that we cannot change. And we are trying to move to the NHibernate instead of old DataAccess layer which is a garbage and is too slow. it has tables like these: GPI table ...
3
votes
1answer
2k views

key-many-to-one and key-property association: nhibernate won't DELETE items from set

I'll try to keep this terse, but hopefully won't miss any important information in my troubles. The code I believe provides all details, but I've left out the noise (it's VB, so there's lots of noise ...
3
votes
3answers
4k views

Inserting a record with a Composite Key using NHibernate

I am working with a legacy database that uses composite keys. And I am trying to use NHibernate to insert a new record into the database. NHibernate specifies that I have to create the Id manually, ...
2
votes
3answers
454 views

Why can't I reference child entities with part of the parent entities composite key

I am trying to reference some child entities with part of the parents composite key not all of it, why cant I? This happens when I use the following mapping instead of that which is commented. I get ...
2
votes
0answers
448 views

NHibernate - composite-id - 3

I have a class in Nhibernate hbm file and for this I'm using a composite id field, in the following way : <composite-id> <key-many-to-one name="DContent" ...
2
votes
1answer
662 views

Is navigation through composite-id's key-many-to-one possible?

Is it possible to navigate through the key-many-to-one associations of a composite-id in Nhibernate? I have a few (legacy) tables that I mapped with the following settings: <class ...
1
vote
0answers
202 views

Mapping CompositeId KeyReference on Interface

I have a mapping problem concerning interface-references in an composite-id: In the following class class Foo { public virtual DateTime Date {get;set;} public virtual IInterface Reference ...
1
vote
1answer
314 views

nhibernate - problem with merging collections

I have parent/child relationship, and child have composite id Parent <id name="Id" type="Int32"> <generator class="identity" /> </id> <set name="Children" ...
1
vote
2answers
126 views

Is it possible to have a composite id that can be edited in NHibernate?

I have a situation where I have tables that have many columns used as a composite primary key, worse off business logic requires these to be mutable. I am using nhibernate and have no problems ...
1
vote
0answers
498 views

NHibernate, could not load an entity when column exists in the database

This is probably a simple question to answer but I just can't figure it out. I have a "Company" class with a many-to-one to "Address" which has a many to one to a composite id in "City". When I load ...
0
votes
1answer
23 views

How to use an Interface as part of a CompositeID in fluent Nhibernate

I'm having trouble figuring out how to map an interface while using a composite key. What I'm trying to do is this: interface Ifoo { int someInt {get;} int id {get;} } class bar1: Ifoo { int ...
0
votes
1answer
70 views

NHibernate issues redundant queries with composite keys

For the sake of the example, let's say that I have to model the "person" entity of the database of my country's revenue service, and that in my very small country the first name and the last name of a ...
0
votes
1answer
59 views

loading objects from a list of composite-ids in nhibernate

what i want to do is to build an HQL Query which accepts a list of ids and returns a list of loaded objets. After a while, i found that something like this could work from Foo foo where foo.ID in ...
0
votes
2answers
489 views

Fluent NHibernate compositeid to mapped class

I'm trying to figure out how to use CompositeId to map another class. Here's a test case: The tables: TestParent: TestParentId (PK) FavoriteColor TestChild: TestParentId (PK) ChildName (PK) ...
0
votes
2answers
304 views

NHibernate: child composite-id is not updated when using merge()

Mapping: <class name="PhoneTypeTest" lazy="false" table="PhoneType"> <cache usage="read-write"/> <id name ="Id" type="Int32" unsaved-value="0"> <generator ...
0
votes
2answers
600 views

NHibernate subclasses and composite keys

I have a class StoreHours that has a composite key and has been working perfectly. A new demand came up for another type of hours to be returned. I thought "simple, I'll abstract the base class, have ...