The goal here is have my complete database configuration and schema generation handled by fluent nhibernate.
Is there a way to to specify a multi-column index with Fluent nhibernate?
I understand that you can specify an index on a single property/column
like so :
mapping.Map(x => x.ItemDt).Index("IX_DataTransferLog_ItemDt");
how can I specify multiple columns?
If that isn't possible, is there a way to add raw SQL statements to a configuration that will be run after the schema is created/updated ?