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

Mongoose indlejret forespørgsel på Model efter felt i dens refererede model

Du kan ikke gøre dette i en enkelt forespørgsel, fordi MongoDB ikke understøtter joins. I stedet skal du dele det op i et par trin:

// Get the _ids of people with the last name of Robertson.
Person.find({lastname: 'Robertson'}, {_id: 1}, function(err, docs) {

    // Map the docs into an array of just the _ids
    var ids = docs.map(function(doc) { return doc._id; });

    // Get the companies whose founders are in that set.
    Company.find({founder: {$in: ids}}, function(err, docs) {
        // docs contains your answer
    });
});


  1. pipelining vs transaktion i redis

  2. grupper efter datoer i mongodb

  3. Php7 Redis Client på Alpine OS

  4. Sådan importeres .bson-filformat på mongodb