Top "Mongodb-.net-driver" questions

The official MongoDB .NET Driver provides asynchronous interaction with MongoDB.

How to make nested queries in MongoDb that works like nested Sql select queries

I want to make an efficient query in MongoDb to find all users who have their userids listed in a …

mongodb mongodb-.net-driver
MongoDB C# Query for 'Like' on string

i am using official mongodb c# driver. i want to query mongodb simliar to SQL Like something like db.users.…

mongodb mongodb-.net-driver
Element 'Id' does not match any field or property of class

I got the result from the collection in MongoDB, the structure is the same as below [DataContract] public class Father { […

mongodb mongodb-.net-driver
MongoDB C# Driver: Ignore Property on Insert

I am using the Official MongoDB C# Drive v0.9.1.26831, but I was wondering given a POCO class, is there anyway …

c# mongodb mongodb-.net-driver
Storing Enums as strings in MongoDB

Is there a way to store Enums as string names rather than ordinal values? Example: Imagine I've got this enum: …

c# mongodb mongodb-.net-driver
How to remove one 'document' by 'ID' using the Official C# Driver for MongoDB?

Can someone please show me, if there is a better way to remove one document from MongoDB using the Official …

c# .net mongodb mongodb-.net-driver
Mongo C# Driver: Deserialize BsonValue

I have a document in mongodb that is structured similar to this: { "_id": "abcdef01234", "Name": "Product A", "Dimensions": [ { "Height": 32, "Width": 64 }, { "…

c# .net mongodb mongodb-.net-driver
Can I do a text query with the mongodb c# driver

Is there a way to submit a query that is expressed in the shell query syntax to the mongo c# …

c# mongodb mongodb-.net-driver
.NET best practices for MongoDB connections?

I've been playing with MongoDB recently (It's AMAZINGLY FAST) using the C# driver on GitHub. Everything is working just fine …

c# mongodb performance connection-pooling mongodb-.net-driver
Convert MongoDB BsonDocument to valid JSON in C#

I am working with the MongoDB C# driver. I have a BsonDocument with some data which includes some MongoDB-specific types (…

json mongodb mongodb-.net-driver