The official MongoDB .NET Driver provides asynchronous interaction with MongoDB.
I have inserted documents into MongoDB without an id. And I want to retrieve them by searching through their MongoDB …
c# .net mongodb mongodb-.net-driverI'm currently upgrading my code to MongoDB C# driver 2.0 and I'm having issues upgrading the code to update documents. using …
c# mongodb mongodb-.net-driver mongodb-csharp-2.0i found the way to check is the value contains in simple array : var filter = Builders<Post>.Filter.…
c# mongodb mongodb-.net-driver mongodb-csharp-2.0The following code will allow me to update the Email where FirstName = "john" and LastName = "Doe". How do you update …
c# .net mongodb mongodb-.net-driverI have a long string in JSON format, and I want to convert it into a BSONDocument for insertion into …
c# mongodb mongodb-.net-driverI am getting data from MongoDB and binding to a WPF datagrid. My code selects multiple rows, retrieves IDs and …
mongodb mongodb-.net-driverI've programmatically created a new document collection using the MongoDB C# driver. At this point I want to create and …
c# .net mongodb indexing mongodb-.net-driverI was using official C# driver to do a FindAll and upgraded to the new driver 2.0. FindAll is obsolete and …
c# .net mongodb mongodb-.net-driver mongodb-csharp-2.0When using a FindOne() using MongoDB and C#, is there a way to ignore fields not found in the object? …
c# .net mongodb mongodb-query mongodb-.net-driverI am using MongoDB and the C# driver for MongoDB. I recently discovered that all queries in MongoDB are case-sensitive. …
c# .net mongodb mongodb-.net-driver case-insensitive