Escaping
In SQL Server, escaping is done by wrapping with square brackets.
select [Id] from [MyTable];
In Postgres this is done using double quotes.
select "id" from "my_table";
The search box in the website knows all the secrets—try it!
For any queries, join our Discord Channel to reach us faster.
JasperFx provides formal support for Marten and other JasperFx libraries. Please check our Support Plans for more details.
In SQL Server, escaping is done by wrapping with square brackets.
select [Id] from [MyTable];
In Postgres this is done using double quotes.
select "id" from "my_table";