“WHERE x IN y” clause with dapper and postgresql throwing 42601: syntax error at or near \\“$1\\”

孤街醉人 提交于 2019-11-29 05:46:53
Shay Rojansky

In PostgreSQL, you can't use IN to check whether a value is inside an array, you have to use the following PostgreSQL-specific syntax: where t.name = ANY (@tagsParam). See the section 8.15.5 in the PostgreSQL docs.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!