I have this table created on PostgreSQL:
When I try to execute:
var result = await DbSet.FromSqlRaw("SELECT * FROM public.\"AppProductVariants\"").ToListAsync();
I got this error: Npgsql.PostgresException (0x80004005): 42601: syntax error at or near "public"
Any ideias?
Regards
You forgot from
abcdefghijklmnop
User contributions licensed under CC BY-SA 3.0