Is there any way to tell the SqlKata compiler to NOT wrap Identifiers when building the query string? (Double quotes for PostgreSql and Square brackets for SqlServer)
For example, when building a query against a PostgreSql database I would like the compiler to create: SELECT CDR.InstanceID FROM CallDetails as CDR
instead of:
SELECT "CDR"."InstanceID" FROM "CallDetails as "CDR"
You can extend the desired compiler and change the default
OpeningIdentifier
andClosingIdentifier
.and use it instead