Disable Table Name Double Quoting on FluentNhibernate
问题 I am switching my application to Postgresql , All the tables in my schema are in lowercase and when I'm doing a query with NHibernate it is adding double quotes to the table name which on the mappings is in PascalCase and causing the query to fail telling me that the table does not exists. I could easily go to all the mappings classes and change the Table method to be lowercase, like change from 'Table("UserAccount")' to 'Table("useraccount")' but I'd rather prefer not having to do this.. I