The official MongoDB .NET Driver provides asynchronous interaction with MongoDB.
I want to query my MongoDB collection without any filter with MongoDB .NET Driver 2.0 but I didn't find a way. …
c# .net mongodb mongodb-.net-driver mongodb-csharp-2.0I have a MongoDB collection "foos" containing items which each have an array of "bars". That is, "foo" has the …
c# mongodb linq indexing mongodb-.net-driverI was in the process of evaluating nosql databases and finalised on two. RavenDB and MongoDb. Which one is better …
mongodb ravendb mongodb-.net-driverI have been trying to pass in a dynamic list of Expressions to a MongoDB C# Driver query using Linq ... …
c# mongodb linq mongo-c-driver mongodb-.net-driverI found that some methods of the official MongoDB C# driver use SafeMode and return SafeModeResult. What is this SafeMode …
mongodb mongodb-.net-driverI'm updating a simple field. var filterDocument = new BsonDocument { { "name", "alice" } }; var newDocument = new BsonDocument { { "name", "Alice" } }; collection.UpdateOne(filterDocument, …
c# .net mongodb mongodb-.net-driverHow do you project on fields in the new MongoDB C# drivers when the fields are given in the form …
c# .net mongodb mongodb-.net-driver mongodb-csharp-2.0The release of version 2.1 of the MongoDb C# Driver has recently reintroduced the method AsQueryable, but I am struggling to …
c# mongodb linq mongodb-.net-driverAn application persists Guid field in Mongo and it ends up being stored as BinData: "_id" : new BinData(3, "WBAc3FDBDU+…
mongodb mongodb-.net-driver