Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to tell NHibernate always to force quoted identifiers?

Tags:

nhibernate

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?

like image 869
yfeldblum Avatar asked Oct 14 '08 03:10

yfeldblum


1 Answers

You can also try:

SchemaMetadataUpdater.QuoteTableAndColumns(configuration);
like image 145
Newbie Avatar answered Oct 07 '22 04:10

Newbie