vote up 1 vote down star

How to create a Multi-Column Index and/or Unique Constraint using NHibernate Mapping or Fluent NHibernate.

flag

1 Answer

vote up 2 vote down check

assign a index/unique constraint name to more then one property

<property name="A" index="AB" />
<property name="B" index="AB" />


Theoretical it would also work with having more then one index on the same entity:

<property name="A" index="AB, ABC" />
<property name="B" index="AB, ABC" />
<property name="C" index="ABC" />

But there is a bug. http://nhjira.koah.net/browse/NH-1487 I also wrote a patch. if you are interested in this, please vote for the bug or add comment or something.

link|flag
For Fluent NHibernate you have to use SetAttribute, which'd make it something like: Map(x => x.A).SetAttribute("index", "AB"); – James Gregory May 7 at 15:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.