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
...
2
votes
1answer
5k views
Fluent NHibernate mapping a composite ID from inherited composite IDs
Let's say I have an existing database with the following 3 tables:
Table1:
(PK)T1ID1
(PK)T1ID2
Table2:
(PK)T2ID1
Table3:
(FK)T1ID1
(FK)T1ID2
(FK)T2ID1
(Where the 3 keys come from the tables above)
...
1
vote
2answers
125 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 ...
0
votes
1answer
69 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
461 views
Fluent NHibernate does an update after an insert on a Composite Key
I am using Fluent NHibernate to map a composite key. I need the child entity to receive the newly inserted parent key when the parent is created. This works but NHibernate is doing an insert on the ...