jsonb_path_exists with Ef Core and Npgsql causes sql injection – Postgresql
I have a query and two parameters. uuid and text. NpgsqlParameter is converting values into single quotes, which causes a syntax error. There must be double quotes in jsonb_path_exists. code: var idParam = new NpgsqlParameter("id", NpgsqlDbType.Uuid) { Value = id};…