Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The code below works, but clearly the last two lines are "hacky." This is the only thing I've gotten to work so far:

var collection = _database.GetCollection<KeyValueDocument>(KeyValueDocumentCollectionName);

var query = Query.And(Query.EQ("KeyName", keyName));
var sortBy = SortBy.Ascending("KeyName");
var update = Update.Inc("KeyValue", adjustmentAmount);
var result = collection.FindAndModify(query, sortBy, update, true);

var newValue = result.ModifiedDocument.Elements.Last().Value;
return Int32.Parse(newValue.RawValue.ToString());                        

The problem is that I'm unable to cast result.ModifiedDocument correctly back to a "KeyValueDocument."

When debugging, I can clearly see that all three properties of a KeyValueDocument are there, with correct values. And I can see the "Elements" collection, the last of which has the property which got incremented. Falling down to the "RawValue" property of that, ToString, parses into an Int. Whew!

But... there's gotta be a better way! I'm using C# and the official 10gen driver.

Please help if you can, Thanks! Travis

share|improve this question

1 Answer

up vote 2 down vote accepted

I'm not sure what your KeyValueDocument class looks like, but assuming it has KeyName and KeyValue properties you could write it like this:

// initialize query, sortBy and update as you proposed
var result = collection.FindAndModify(query, sortBy, update, true);
var modifiedDocument = result.GetModifiedDocumentAs<KeyValueDocument>();
return modifiedDocument.KeyValue; // I'm assuming KeyValue is of type int
share|improve this answer
thanks! completely missed that method. – Travis Laborde Jan 17 '12 at 12:53

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.