我正在尝试使用以下查询获取本地表中的最后5个条目:
List<ParseObject> results = new ArrayList();
ParseQuery<ParseObject> query = ParseQuery.getQuery("Chat"+params[0]);
query.fromLocalDatastore();
query.setLimit(5);
query.orderByDescending("createdAt");
try {
results = query.find();
} catch (ParseException e) {
e.printStackTrace();
}
即使我添加了orderByDescending约束,上面的查询仍然首先创建了5个项目。我只想要我在本地创建的最后5个项目。