I\'m doing refactoring on production database and need to make some renamings. Version of mongodb is 1.8.0. I use C# driver to do refactoring of database. Have faced with problem when I try to rename
I try 开发者_StackOverflow中文版to timed a Mongo query in C# on a column with an index: DateTime startTime = DateTime.Now;
I\'m using Fluent Mongo and having issues creating a dynamic linq query because Fluent Mongo doesn\'t support Contains.I basically need to have a nested OR statement within my Where to check if an Enu
I have read this question and haven\'t understand. Is there abili开发者_Python百科ty to execute arbitrary mongodb shell script via C# driver?var mongoServer = MongoServer.Create(\"mongodb://<connec
I\'d like to use MongoDB with Linq, simply because I do not like to not being able to check the query at compile time.
I started to use MongoDB at work so 开发者_运维知识库far so good. I was wondering though how does MongoDB deal with concurrent updates ?
I am using MongoDB at work these days. So far, I find it a great experience. Howeve开发者_高级运维r I am asked to make relations between collections with MongoDB. This goes against the purpose of the
I have been trying to get started but run into the same rock time after time trying to create and query MongoDB with C# official driver. The problem is how to create data with geo information. I am ju
I\'m currently using ASP.NET MVC3 and MongoDB for a web app.MongoDB uses UTC and the server hosting the app is also using UTC. If I use DateTime.ToLocalTime() in the View that will just return the ser
I\'m using the following logic (MOQ) to attempt to mock out the MongoDB csharp driver objects: var svr = new Mock<MongoServer>(new MongoServerSettings());