Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version: 1.0.2
Name and version of the database you are using: SQL Server 2000
Hi all,
I am using NHIbernate for sometime. But I have a question, may be rather trivial.
I have a table "person" and table "rights"
there is a many to many relationship between the 2 tables.
I got this part on NHIbernate to work but how could I add a property on the link table
say the link table at the moment is
table(personId, rightId )
I wish to add a property called "isAdmin" making the table definition
table(personId, rightId, isAdmin)
how do I achieve that
??
and how does the nhibernate mapping go for it ??