How can I map one to one relationship in Fluent NHibernate. I have tried everything else

Posted by RM on Stack Overflow See other posts from Stack Overflow or by RM
Published on 2010-04-18T03:14:37Z Indexed on 2010/04/18 3:23 UTC
Read the original article Hit count: 350

I have this table structure and would like to map it using Fluent Hibernate (subclass if possible). I cannot change the structure because the database has too many records and might cause major applications rework. It would be easier if the Id from Party table was a foreign key in person and organization table, but in the particular scenario the database has person and organization key as a foreign key in party table. Any help would be great.

Party table

Id PersonId OrganizationId

Person table

Id FName LName

Organization table

Id OrgName OrgDescription

© Stack Overflow or respective owner

Related posts about nhibernate

Related posts about mappings