我正在为 mongo db 使用 alex bilbie 库(https://github.com/alexbilbie/codeigniter-mongodb-library/tree/v2)。我不知道如何用这个库形成 elemMatch 查询。
我需要将其转换为 alexs lib。
db.centers.find(
{
'_id': ObjectId('516d3ae30074d35600000001')
},
{
'locations' : {
'$elemMatch' : { "id" : ObjectId("51b595eabe55b59630000000") }
}
}
)