Can LINQPad automatically quote DB object names for me?
I'd like to use LINQPad to query a PostgreSQL database (using the plugin developed by fknx). The database contains camel case names, which Postgres automatically folds to lowercase unless they're quoted. So this works:
SELECT "MyColumn" FROM "CamelCaseTable"but this fails:
SELECT MyColumn FROM CamelCaseTableCan LINQPad automatically quote column names, so that users don't have to? This already works in LINQ Expressions, e.g.
from c in CamelCaseTable select c.MyColumnbut it would be great if it worked without the quotes when the language is set to SQL, too.
Comments