.Net PostgreSQL NpgsqlBatch. Apply SET TIME ZONE to select query
How to apply SET TIME ZONE to NpgsqlCommand? Attempt 1. SET TIME ZONE in CommandText, separated from select with ; using var cmd = connection.CreateCommand(); cmd.CommandText = "SET TIME ZONE '+02:00'; select "t0"."start_time" from "task"."tasks" "t0" where "t0"."number" = 217";…