PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Como passar o parâmetro para a instrução sql 'in'?


Passe-o como um array:
string[] numbers = new string[] { "123", "234" };

NpgsqlCommands cmd = new NpgsqlCommands("select * from products where number = ANY(:numbers)");
NpgsqlParameter p = new NpgsqlParameter("numbers", NpgsqlDbType.Array | NpgsqlDbType.Text);
p.value = numbers;
command.Parameters.Add(p);