我在JDO中使用。试图获取字符串集合不包含特定字符串的实体:
!viewers.contains('aaa')
"App Engine datastore does not support operator NOT"有什么解决办法吗?
发布于 2015-01-20 21:00:41
GAE查询总是在索引上执行。但是,does not include string查询需要一个表扫描。这种查询在GAE上是不可能的。
https://stackoverflow.com/questions/28033673
复制相似问题