We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Patch from Robert, not sure why this never got applied. Will review post-1.1.
public class Indexes : FluentIndexBase { public Indexes(Configuration configuration) : base(configuration) { AddDialectScope("NHibernate.Dialect.MsSql2005Dialect"); ClusteredIndex<Person>().OnPrimaryKey(); UniqueNonClusteredIndex<Person>().OnProperty(x => x.SSN); ClusteredIndex<SuperClass>().OnProperty(x => x.Person); UniqueNonClusteredIndex<SuperClass>().OnProperty(x => x.SomeProperty); NonClusteredIndex<SuperClass>().OnDiscriminator(); } }
The text was updated successfully, but these errors were encountered:
Patch here: https://gist.github.com/1098406
Sorry, something went wrong.
was this applied already?
No it wasn't, I'll apply this soon.
No branches or pull requests
Patch from Robert, not sure why this never got applied. Will review post-1.1.
The text was updated successfully, but these errors were encountered: