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 ...
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 ...
2
votes
2answers
980 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
0answers
200 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
257 views

Fluent Nhibernate 3 Mapping Composite Field (Custom Type)

HI all, my scenario public class Permission { public virtual Function Function { get; set; } public virtual Profile Profile { get; set; } } public class MapPermission : ...
1
vote
0answers
283 views

Fluent NHibernate HasManyToMany() IDictionary<> Composite ID problem

I'm using Fluent NHibernate 1.1.1.694 which uses a slightly different syntax than FNH1.0, especially when it comes to dictionary mapping. In my model, I have Employees, Addresses and AddressTypes ...
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
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 ...