I know that I can Map(x => x.GroupName).WithUniqueConstraint()
for a single property.
But how do create a composite unique constraint in fluent nHibernate (where the unique constraint operates on the combination of two columns)?
In the latest version that I have used, it isUniqueKey("KeyName")
that does this.
Map(x => x.Something).UniqueKey("KeyName");
Map(x => x.SomeOtherThing).UniqueKey("KeyName");