Tagged Questions

4
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
460 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
1answer
670 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
208 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 ...