Как изменить порядок столбцов в многостолбцовом индексе, использующем быстрый-nhibernate?

Как изменить порядок столбцов в многостолбцовом индексе?
Т.е.:

mapping.References(x => x.SomeReference).SetAttribute("index", "IX_index");
mapping.Map(x => x.SomeField).SetAttribute("index", "IX_index");

Производит следующую Схему:

create index IX_index on ApplicantProgramDatas (SomeField, SomeReferenceId)

Но я хочу добраться:

create index IX_index on ApplicantProgramDatas (SomeReferenceId, SomeField)
6
задан Groo 5 November 2010 в 11:47
поделиться