本文介绍了MongoDB elemMatch 子文档的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下数据结构

{
    "_id" : ObjectId("523331359245b5a07b903ccc"),
    "a" : "a",
    "b" : [
        {
            "c" : {
                "_id" : ObjectId("5232b5090364678515db9a82"),
                "d" : "d1"
            }
        },
        {
            "c" : {
                "_id" : ObjectId("5232b5090364678515db9a83"),
                "d" : "d2"
            }
        }
    ]
}

对于以下查询,mongo 返回

For the following queries, mongo returns

> db.test.find({b : {$elemMatch : {'c.d': 'd1'}}}).count();
1
> db.test.find({b : {$elemMatch : {c: {d: 'd1'}}}}).count();
0

不幸的是,对于以下陈述

Unfortunately, for the following statements

B b = new B();
C c = new C();
b.c = c;
b.c.d = "d1";
createQuery().field("b").hasThisElement(b).asList();

Morphia 生成 db.test.find({b : {$elemMatch : {c: {d: 'd1'}}}}) 返回 0 匹配.

Morphia generates db.test.find({b : {$elemMatch : {c: {d: 'd1'}}}}) which returns 0 match.

这是一个 mongo 错误还是一个吗啡错误?有什么解决方法可以让我获得匹配的文档吗?

Is this a mongo bug or a morphia bug? Is there any workaround for me to get the matched document?

  • 请注意,在现实世界的实践中,我有两个 elemMatch 条件,因此我必须使用elemMatch",而不是点符号"匹配.以上只是为了简化我的案例,方便查看.
  • 我正在运行 Mongodb 2.4.6 和 Morphia 1.2.3

谢谢!

推荐答案

为时已晚,但也许其他人可以找到它.

It is too late, but maybe others can found it handy.

我找到了解决方案 https://groups.google.com/forum/#!topic/morphia/FlEjBoSqkhg

updateQuery.filter("b elem",
BasicDBObjectBuilder.start("c.d", "d1").get());

这篇关于MongoDB elemMatch 子文档的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-13 01:07