Reputation: 344
I am trying to connect to the postgresql database and everything works fine, but I do not know how to make a query to fetch data from a table that is in a schema, but it can help me.
When I consult by PgAdmin the queries I make are this:
SELECT * FROM "public"."STORE";
But in the C # code I can not do this query with double quotation marks and no single quotes, someone knows like the previous query by code.
Upvotes: 2
Views: 833