我正在构建一个与使用Odata协议公开REST服务的tomcat服务器通信的SPA。查询是使用Jaydata框架创建的。
我需要进行这样的查询:
SELECT * from category where category.id in (1223,1001....)
目前我用OR构建它:
$filter=(((((((category/id eq 1062) or (category/id eq 1061)) or (category/id eq 1063)) ...
有没有办法将其更改为...在查询中而不是OR?
答案 0 :(得分:0)
这应该有效:
context.Categories.filter("it.id in ids", { ids: yourarraywithids} ).toArray()