Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

As the title: How would I tell NHibernate, once and for all, that all table and column names are to be quoted in the SQL it generates?

share|improve this question

3 Answers

up vote 1 down vote accepted

I've not tried this, but as far as i can determine based on the documentation a custom implementation of the naming strategy allows you to rewrite the table/column names thus also enables you to quote them.

share|improve this answer
this references a broken link. – Jeremy Holovacs Feb 26 at 15:33

You can also try:

SchemaMetadataUpdater.QuoteTableAndColumns(configuration);
share|improve this answer
This is what worked for me 100%. The neat thing is that NHibernate only quotes reserved keywords, not everything. Thanks! – Dav Aug 22 '12 at 14:46
This doesn't seem to quote the column names, at least for postgresql. – Jeremy Holovacs Feb 26 at 15:32

You need to add

<property name="hbm2ddl.keywords">auto-quote</property>

to your NHibernate configuration.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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