If I have a Company collection which contains embedded Divisions:
{
"_id": 1
"_t": "Company",
"Name": "Test Company"
"Divisions": [
{
"_id": 1
"_t": "Division",
"Name": "Test Division 1"
},
{
"_id": 2
"_t": "Division",
"Name": "Test Division 2"
}
]
}
What is the best way to save/update an entire Division when using the official 10gen C# driver? (The latest 0.9 release.)
I'm using Update.AddToSetWrapped to add Divisions, and that works fine, but I'd also like to be able to update documents depending on their _id.
For example, if I define the following Update method:
public void UpdateDivision(IDivision division)
{
var mongo = MongoServer.Create(_connectionString);
var database = mongo.GetDatabase(_databaseName);
var query = Query.EQ("_id", division.CompanyId);
var update = Update.AddToSetWrapped("Divisions", division);
database.GetCollection<Company>("Company")
.Update(query, update, UpdateFlags.Upsert, SafeMode.True);
}
and call it like so:
var division = GetDivisionById(1);
division.Name = "New Name";
UpdateDivision(division);
Then a new instance of Division will be added to the set, because although the "_id" is still 1, the Name is different, and therefore it is a unique document.
So what is there a good way to update a whole embedded document?
Until I come up with a better solution I am going to first $pull
the original Division and then $addToSet
with the modified Division. That works but is obviously not ideal as it performs two separate updates.