I have just downloaded the most recent official 10gen mongo c# driver (1.1.0.4184) and I am trying to do what I think is a pretty simple query to get back some results based on location:
I use offical C# Driver for mongodb, I want to use SetFields from a FindOne query like Find. var query = Query.EQ(\"Name\", name);
I\'m researching MongoDB at the moment.It\'s my understa开发者_运维问答nding that the official C# driver can perform serialization and deserialization of POCOs.What I haven\'t found information on yet
I have a mongo document that contains an array of embedded documents.The embedded documents have a property named \"Id\".
I\'m apologizing if I\'m using the wrong terminology here. I\'m still very much in the ORM world, but I\'ve been playing around with MongoDb and really love what I see. One of the things I\'m not liki
I\'m working with the MongoDB official开发者_如何转开发 driver (10Gen). And I cannot query a MonogoDBRef propertie. I have the following classes:
I\'m using the official C# driver and I want to sort a collection by $natural. I know for sorting by k开发者_如何学编程eys, I can use
I would like to know how can I check the existence of an object with mongoDB and C#. I\'ve found a way to do it but I had to use Linq thanks to Any() method, but I\'d like to know if it\'s possible t
I\'m trying to persist an object into a MongoDB, using the following bit of code: public class myClass
Is there a way to log the actual queries that are produced by the MongoDB C# driver and sent to the mongodb? Like in开发者_JS百科 SQL Server, you have SQL Profiler that shows you all the incoming quer