- यह सामान्य एक-से-अनेक संबंध है। तो उपयोगकर्ता के मामले में आपके पास निम्न स्कीमा हो सकता है:
//User
{
//_id: ObjectId - this one is unique and inserted to every document by default
profile: String,
...
}
//Activity
{
description: String,
...,
userId: String, // referecing the user _id, e.g. "56a5eccb2258799919dc2c40"
}
- यदि आप गतिविधि के लिए कई दस्तावेज़ अपडेट करना चाहते हैं:
db.activities.update({ userId: '56a5eccb2258799919dc2c40' }, {
$set: {
description: 'new description'
}
},
{
multi: true //means update all matching docs
});