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

MongoDB:Hvordan løses DBRef på klientsiden?

Du kan løse dette med $lookup operatør. Overvej følgende aggregeringspipeline:

// Execute aggregate, notice the pipeline is expressed as an Array
collection.aggregate([
    {
        "$lookup": {
            "from": "product",
            "localField": "content.product.$id",
            "foreignField": "_id",
            "as": "products"
        }
    },
    {
        "$lookup": {
            "from": "clients",
            "localField": "content.client.$id",
            "foreignField": "_id",
            "as": "clients"
        }
    },
  ], function(err, result) {
    console.log(result);
});


  1. Mongo i testcontainere

  2. Planlæg Node.js-job hvert femte minut

  3. hvordan man opdaterer et objekt fra mLab-samlingen ved hjælp af _id

  4. SQL RPAD()