MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

MongoDB:Combine vários elementos de array


Em um caso como este em que você deseja os documentos que incluem um conjunto específico de elementos de matriz, você pode usar o $all operador:
db.MyCollection.find(
{ 
    Location: { "$within": { "$center": [ [1, 1], 5 ] } },
    Properties: {
        $all: [
            {$elemMatch: { Type: 1, Value: "a" }},
            {$elemMatch: { Type: 2, Value: "b" }}
        ]
    }
})

Para fazer isso sem o $all operador você pode usar:
db.MyCollection.find(
{ 
    Location: { "$within": { "$center": [ [1, 1], 5 ] } },
    $and: [
        { Properties: {
            $elemMatch: { Type: 1, Value: "a" }
        }},
        { Properties: {
            $elemMatch: { Type: 2, Value: "b" }
        }}
    ]
})