在Google DataStore
中,我使用了一个属性的排序,并使用其他属性进行过滤。但是Datastore引发了异常。
让我说我过滤了firstname的属性并按creationdate命令
String firstname = "Smith";
query.setFilter("firstname == :1");
query.setOrdering("creationdate desc");
query.execute(firstname)
它不起作用。
答案 0 :(得分:0)
过去,当我们处理多个属性时,我遇到了异常;我被建议使用索引。看看是否有帮助
https://developers.google.com/appengine/docs/java/config/indexconfig