Quoted field names

I need to connect to an existing Firebird database that used quoted table and field names using the UniDac adapter.. How can I get the names to be quoted?

There is no explicit support for it. I believe you can use the quotes directly in your mapping, for example:


[Entity]
[Table('"MyTable"')]
[Automapping]
TMyTable = class


I believe this would work, but we haven't tested it.

I tried that and get queries with columns that look like "A.FieldName" and not A."FieldName" which doesn't work.