I have am able to query and insert new documents just fine, however, when I try to build an update document I get an error:
A first chance exception of type 'System.FormatException' occurred in MongoDB.Bson.dll
I an using the example straight from the site
var update = Builders<BsonDocument>.Update.Set("i", 100);
yet I STILL get the same error.
I am using the 2.0 driver with VS2013, the driver was downloaded using NuGet. Anyone have a suggestion as to why this is happening?