How can I update an array into mongodb nested collection?
Code:
public bool UpdateTest(string id, List<Test> tests)
{
IMongoQuery query = Query.EQ("_id", id);
foreach (Test test in tests)
{
test.Id = ObjectId.GenerateNewId().ToString();
test.LastModified = DateTime.UtcNow;
}
IMongoUpdate update = Update
.PushWrapped("Tests", tests);
SafeModeResult result = _test.Update(query, update);
return result.UpdatedExisting;
}
Result:
"Tests" : [[{
"_id" : "50fa2c085029d631e85f99b7",
"Name" : "test1",
}, {
"_id" : "50fa2c095029d631e85f99b8",
"Name" : "test2",
}]]
I don't want to have a array in the nested array. How can I do it?
Do I need to loop to update? Is it effective?