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

MongoDB - DBRef

Sintassi per dbref è

  { $ref : <collname>, $id : <idvalue>[, $db : <dbname>] }

Ma hai aggiunto un campo di quantità non supportato all'interno di dbref. Questo è il problema. portalo fuori

db.basket.save ({"_id" : "1", "items" : [
    {"quantity" : 5 , item : {"$ref" : "fruit", "$id" : "1"}},
    {"quantity" : 10, item : {"$ref" : "fruit", "$id" : "3"}}
]})

che tipo di look (spaventoso)

{
    "_id" : "1",
    "items" : [
        {
            "quantity" : 5,
            "item" : {
                "$ref" : "fruit",
                "$id" : "1"
            }
        },
        {
            "quantity" : 10,
            "item" : {
                "$ref" : "fruit",
                "$id" : "3"
            }
        }
    ]
}

Ma il mio consiglio è di abbandonare del tutto il dbref e utilizzare semplicemente la struttura semplice come questa

db.basket.save ({"_id" : "1",items:[
                        {item_id:"1",quantity:50},
                        {item_id:"3",quantity:10}
                ]})

questo è molto più pulito, che sembrerà

{
    "_id" : "1",
    "items" : [
        {
            "item_id" : "1",
            "quantity" : 50
        },
        {
            "item_id" : "3",
            "quantity" : 10
        }
    ]
}