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 ...
2
votes
2answers
982 views

Fluent NHibernate Mapping - Composite Key

I'm trying to map the following tables/entities in FNH and seem to be getting nowhere fast! **Tables** Contacts ID (PK - int - generated) ... PhoneTypes ID (PK - varchar - assigned) ...
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
1answer
887 views

(Fluent) NHibernate composite-id problem : MySQL complains that the parameter index is out of bounds

I'm using Fluent NHibernate to create an ASP.NET MVC project, with Submissions and Votes (Up/Down) by Users. Of course, Users can vote submission Up or Down. To record this, I created a middle table, ...
0
votes
1answer
22 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
2answers
486 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
1answer
464 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 ...