java – 在客观化中使用’IN’查询
作者:互联网
如何在客体化中使用“IN”查询?我有一个’纸’实体和一个不同的实体’时间表’.在’附表’中我有纸的关键.现在我使用一些标准获得了“纸”的几个键.现在我想用’scheduledDate’来过滤那些.我想用这样的东西查询’Schedule’:从’Schedule’获取’schedule’,其中’paper key’在(Paper keys键列表)和’scheduledDate’=’some date’.如何在物化中做到这一点?谢谢
解决方法:
Objectify是低级数据存储API的瘦包装器,因此IN运算符的行为与低级API相同:
ofy.query(Schedule.class).filter("paper IN", listOfPaperKeys).filter("scheduledDate = ", someDate)
这假设您的Schedule类具有字段List< Key>包含指向Paper实体的键列表的纸张(如果使用objectify的类型安全键,您还可以使用List< Key< Paper>> paper).
请注意IN如何在引擎盖下执行一系列查询并组合结果.所以在某种意义上它表现为一系列“=”运算符,其结果被合并:
The IN operator also performs multiple queries, one for each item in the
specified list, with all other filters the same and the IN filter replaced with
an EQUAL filter. The results are merged, in the order of the items in the list.
If a query has more than one IN filter, it is performed as multiple queries,
one for each possible combination of values in the IN lists.
标签:java,google-app-engine,objectify 来源: https://codeday.me/bug/20190530/1182079.html