我在 mongodb 集合“联系人”中有以下文档结构。有一个称为“数字”的子文档数组:
{
"name" : "Bill",
"numbers" : [
{
"type" : "home",
"number" : "01234",
},
{
"type" : "business",
"number" : "99099"
},
{
"type" : "fax",
"number" : "77777"
}
]
}
当我只想查询“家庭”和“企业”号码时,我可以在 mongodb-shell 中执行以下操作:
db.Contact.find({ numbers: { $elemMatch: {
type : { $in : ["home", "business"]},
number: { $regex : "^012" }
}}});
但是如何在吗啡中做到这一点?有什么办法吗?
我了解吗啡支持“$elemMatch”。所以我可以做类似的事情:
query.filter("numbers elem", ???);
但是我究竟如何为子文档添加组合查询呢?