MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

MongoDB:abbina più elementi dell'array

In un caso come questo in cui desideri i documenti che includono un insieme specifico di elementi dell'array, puoi utilizzare $all operatore:

db.MyCollection.find(
{ 
    Location: { "$within": { "$center": [ [1, 1], 5 ] } },
    Properties: {
        $all: [
            {$elemMatch: { Type: 1, Value: "a" }},
            {$elemMatch: { Type: 2, Value: "b" }}
        ]
    }
})

Per farlo senza il $all operatore che potresti utilizzare:

db.MyCollection.find(
{ 
    Location: { "$within": { "$center": [ [1, 1], 5 ] } },
    $and: [
        { Properties: {
            $elemMatch: { Type: 1, Value: "a" }
        }},
        { Properties: {
            $elemMatch: { Type: 2, Value: "b" }
        }}
    ]
})