Sie können dies mit
tundb.test.update(
{ _id : 133 },
{ $set : { PackSizes: {_id: 123, PackSizeName:"xyz", UnitName:"pqr"}} }
)
PackSizes könnte jedes Dokument sein, mit oder ohne Array.
Ihr Ergebnisdokument wird sein
{
"_id" : 133,
"Name" : "abc",
"Price" : 20,
"PackSizes" : {
"_id" : 123,
"PackSizeName" : "xyz",
"UnitName" : "pqr"
}
}
Aktualisiert: Um ein neues Feld und ein Mitglied zum Array hinzuzufügen,
Angenommen, wir haben Ihr Originaldokument
{
_id: 133,
Name: "abc",
Price: 20
}
Schritt 1:Neues Feld hinzufügen:PackSizes ist ein Array
db.test.update(
{ _id : 133 },
{ $set : {PackSizes: [ {_id: 123, PackSizeName:"xyz", UnitName:"pqr"}]}}
)
Schritt 2:Neues Element in Array verschieben
db.test.update(
{ _id : 133 },
{ $push : { PackSizes: {_id: 124, PackSizeName:"xyz", UnitName:"pqr"}} }
)
und du wirst haben
{
"_id" : 133,
"Name" : "abc",
"Price" : 20,
"PackSizes" : [
{
"_id" : 123,
"PackSizeName" : "xyz",
"UnitName" : "pqr"
},
{
"_id" : 124,
"PackSizeName" : "xyz",
"UnitName" : "pqr"
}
]
}