Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the official documentation of mongodb they mention upserts, so it would be really nice to write an upsert command instead of:

  if (_campaignRepo.Exists(camp))
        {
            _campaignRepo.DeleteByIdAndSystemId(camp);
        }

  _campaignRepo.Save(camp);

something which would implement that logic on the db level if it is possible. So what is the way to do an upsert if there is one?

share|improve this question

3 Answers

up vote 7 down vote accepted

The following code is from a working app:

weekplanStore.Update(
    Query.EQ("weekNumber", week),
    Update.Replace(rawWeekPlan),
    UpdateFlags.Upsert);

The weekplanStore is my MongoDB collection, and the code will update the document found with the query in the first argument or insert a new one if none is found. The "trick" is to use the UpdateFlags.Upsert modifier.

The rawWeekPlan is the object inserted or updated, and has the following type:

private class RawWeekPlan
{
    public ObjectId id;
    public int weekNumber;
    public WeekPlanEntry[] entries;
}

and turned into bson by the driver automatically.

share|improve this answer
rawWeekPlan - is it the document object you insert? – Hohhi Aug 30 '11 at 8:12
1  
yes. Updated the answer. – Christian Horsdal Aug 30 '11 at 8:16
Does it work for nested collections? Have you tried it out? Because it does not work for them in my case – Hohhi Sep 2 '11 at 9:34
Don't know. I haven't tried it on nested collections. – Christian Horsdal Sep 2 '11 at 12:23
The problem is in id-s. I asked a question on another thread – Hohhi Sep 2 '11 at 12:25

The official C# driver already implements this logic within the Save command. You only need the last line in your code to do the upsert.

_campaignRepo.Save(camp);

From the official documentation here: http://www.mongodb.org/display/DOCS/CSharp+Driver+Tutorial#CSharpDriverTutorial-Save%3CTDocument%3Emethod

The Save method is a combination of Insert and Update. If the Id member of the document has a value, then it is assumed to be an existing document and Save calls Update on the document (setting the Upsert flag just in case it actually is a new document after all). Otherwise it is assumed to be a new document and Save calls Insert after first assigning a newly generated unique value to the Id member.

Note: This does require the proper mapping of the Id field however. More info on that here: http://www.mongodb.org/display/DOCS/CSharp+Driver+Serialization+Tutorial#CSharpDriverSerializationTutorial-IdentifyingtheIdfieldorproperty

share|improve this answer
good, thank you. But suppose my entity is identified by a complex pair of fields. How do I point it out in a query? Any code sample? – Hohhi Aug 30 '11 at 8:08
Just updated the answer with details on the Id property. You can assign a custom Id Generator class as well that contains the logic for producing your Id. – Mani Gandham Aug 30 '11 at 8:11

You can use the regular update command, but just pass it the Upsert update flag

MongoCollection collection = db.GetCollection("matches");
var query = new QueryDocument("recordId", recordId);

var update = Update.Set("FirstName", "John").Set("LastName","Doe");
matchCollection.Update(query, update, UpdateFlags.Upsert, SafeMode.False);

That code is adapted from a working application (shortened for clarity)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.