Replies: 3 comments 6 replies
-
Array types in PostgreSQL are handled properly and you can do pretty much something like that, but only if you're using PostgreSQL. In that case, your list or your array parameter will be mapped to PostgreSQL array type and you can do whatever from there .... |
Beta Was this translation helpful? Give feedback.
-
@mkaragits here you go: Don't forget to ad a star on this repo and tell others .net developers about this package. |
Beta Was this translation helpful? Give feedback.
-
Thank you! |
Beta Was this translation helpful? Give feedback.
-
Hi,
Would it be possible to add parameterized IN clauses?
So that something like this would work:
connection.ReadAsync(@"SELECT * FROM Table WHERE id IN @list",
new { list = new[] { 1, 2, 3 } });
Thanks
Beta Was this translation helpful? Give feedback.
All reactions