我使用Morphia Java驱动程序查询包含以下形式集合的MongoDB:
MyCollection {
TypeA
TypeB
}
我想使用以下代码检索TypeB的所有不同值:
DBCollection myCol = getDatastore().getCollection(MyCollection.class);
List typeBs = myCol.distinct("TypeB");
上面的代码按预期工作,但不同值的列表当然没有排序。
我已经尝试过以下代码:
DBCollection myCol = getDatastore().getCollection(MyCollection.class);
DBObject orderBy = new BasicDBObject("$orderby", new BasicDBObject("TypeB", 1);
List typeBs = myCol.distinct("TypeB", orderBy);
但是在这种情况下,列表是空的,我的假设在哪里错了?
更新
通过使用CLI,我发现以下查询返回了预期结果:
> db.mycollection.find({$query : {}, $orderby : { TypeB : 1 }})
所以我相应调整了我的代码:
DBCollection myCol = getDatastore().getCollection(MyCollection.class);
BasicDBObject ascending = new BasicDBObject("TypeB", 1);
BasicDBObject filter = new BasicDBObject();
filter.put("$query", new BasicDBObject());
filter.put("$orderby", ascending);
List typeBs = myCol.distinct("TypeB", filter);
结果仍包含0个条目!
真正让我感到困惑的是,如果我使用.find而不是.distinct,同样的查询会有效:
DBCollection myCol = getDatastore().getCollection(MyCollection.class);
BasicDBObject ascending = new BasicDBObject("TypeB", 1);
BasicDBObject filter = new BasicDBObject();
filter.put("$query", new BasicDBObject());
filter.put("$orderby", ascending);
myCol.find(filter).hasNext(); <-- Evaluates to TRUE
为什么使用 distinct 方法调用时过滤器不起作用?
答案 0 :(得分:5)
DBCollection.distinct()的第二个DBObject参数是一个查询对象,用于定义匹配条件。要对列表进行排序,您可以使用:
List typeBs = myCol.distinct("TypeB");
java.util.Collections.sort(typeBs);