The MongoDB C# Driver is the 10gen-supported C# / .NET driver for MongoDB.

learn more… | top users | synonyms (1)

31
votes
2answers
9k views

MongoDB GridFs with C#, how to store files such as images?

I'm developing a web app with mongodb as my back-end. I'd like to have users upload pictures to their profiles like a linked-in profile pic. I'm using an aspx page with MVC2 and I read that GridFs ...
18
votes
2answers
3k views

Convert string into MongoDB BsonDocument

I have a long string in JSON format, and I want to convert it into a BSONDocument for insertion into a MongoDB database. How do I do the conversion? I'm using the official C# driver.
0
votes
3answers
2k views

How to use MongoRegex (MongoDB C# Driver)

Has anyone have any idea how to use MongoRegex for the document search? I attempted this, but returns nothing back: var spec = new Document(); spec.Add("Name", new MongoRegex("/" + searchKey + "*/", ...
21
votes
6answers
5k views

What is the most mature MongoDB driver for C#?

So, there are mongodb-csharp simple-mongodb NoRM as C# drivers for MongoDB available. Which one of them is the most mature and stable one? Why would you choose one over the other two? Are they ...
8
votes
2answers
2k views

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# driver For example Something like Coll.find { "myrecs","$query : { x : 3, y : "abc" }, $orderby : { x : 1 ...
5
votes
5answers
3k views

MongoDB, c#: Case insensitive search

In my project i am using mongodb and c# driver for mongodb. Recently i found that all search im mongodb case sensetive, but i need insensitive search. So, can anyone help? Thanks a lot. I found ...
22
votes
2answers
4k views

Update MongoDB field using value of another field

In MongoDB, is it possible to update the value of a field using the value from another field? The equivalent SQL would be something like: UPDATE Person SET Name = FirstName + ' ' + LastName And ...
11
votes
1answer
4k views

How do you update multiple field using Update.Set in MongoDB using official c# driver?

The following code will allow me to update the Email where FirstName = "john" and LastName = "Doe". How do you update both Email and Phone without using Save() method? MongoDB.Driver.MongoServer ...
5
votes
3answers
2k views

How can I 'AND' multiple $elemMatch clauses with C# and MongoDB?

I am using the 10Gen sanctioned c# driver for mongoDB for a c# application and for data browsing I am using Mongovue. Here are two sample document schemas: { "_id": { "$oid": ...
3
votes
2answers
1k views

Storing a Dictionary with polymorphic values in mongoDB using C#

Let us say we have a key with values which are polymorphic in their sense. Consider the next sample project: public class ToBeSerialized { [BsonId] public ObjectId MongoId; public ...
1
vote
3answers
1k views

Execute mongodb shell script via C# driver

I have read this question and haven't understand. Is there ability to execute arbitrary mongodb shell script via C# driver?
11
votes
3answers
2k views

How to get the Mongo database specified in connection string in C#

I would like to connect to the database specified in the connection string, without specifying it again in GetDatabase. For example, if I have a connection string like this; ...
1
vote
1answer
401 views

Mongodb authentication [duplicate]

How do I use authentication with mongodb via the official c# driver? I can't find any API methods to authenticate, other than internal members.
13
votes
1answer
2k views

Unit of work in mongodb and C#

I know that MongoDB is not supposed to support unit of work, etc. But I think it would be nice to implement the repository which would store only the intentions (similar to criteria) and then commit ...
4
votes
1answer
2k views

Updating an embedded document in MongoDB with official C# driver

If I have a Company collection which contains embedded Divisions: { "_id": 1 "_t": "Company", "Name": "Test Company" "Divisions": [ { "_id": 1 "_t": "Division", ...
3
votes
3answers
2k views

How to save date properly?

I'm trying to save date (using C# official driver): val = DateTime.Parse(value).Date; //Here date is {11/11/2011 12:00:00 AM} var update = Update.Set("Date", val); ... When I select Date from the ...
7
votes
3answers
3k views

MongoDB remove mapreduce collection

Due to error in client code, mongodb have created many "mr.mapreduce...." collections, how to remove them all (by mask maybe).
6
votes
1answer
2k views

Mongodb — include or exclude certain elements with c# driver

How would I translate this mongo query to a Query.EQ statement in C#? db.users.find({name: 'Bob'}, {'_id': 1}); In other words, I don't want everything returned to C# -- Just the one element I ...
6
votes
2answers
2k views

How to use SetField in FindOne in MongoDB For C# Driver

I use offical C# Driver for mongodb, I want to use SetFields from a FindOne query like Find. var query = Query.EQ("Name", name); Users.Find(query).SetFields(Fields.Exclude("Password")); Is it ...
5
votes
2answers
522 views

MongoDB: Calling Count() vs tracking counts in a collection

I am moving our messaging system to MongoDB and am curious what approach to take with respect to various stats, like number of messages per user etc. In MS SQL database I have a table where I have ...
3
votes
3answers
3k views

Upserting in Mongo DB using official C# driver

In the official documentation of mongodb they mention upserts, so it would be really nice to write an upsert command instead of: if (_campaignRepo.Exists(camp)) { ...
2
votes
2answers
1k views

MongoDB geospatial index in C#

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 ...
1
vote
1answer
723 views

MongoDB performance issue: Single Huge collection vs Multiple Small Collections

I tested two scenarios Single Huge collection vs Multiple Small Collections and found huge difference in performance while querying. Here is what I did. Case 1: I created a product collection ...
3
votes
1answer
718 views

Transition from Fluent Mongo to Mongo C# 1.4 Driver

We are using FluentMongo and now that LINQ support has been added into the C# driver, we are going to remove the dependency on Fluent and go with the official C# driver alone. Has anyone done this ...
2
votes
2answers
790 views

Storing composite/nested object graph

I am currently developing a document store in Mongo DB which contains a complete material breakdown of a specific item. The breakdown is calculated and contains a composite structure. The domain ...
1
vote
1answer
260 views

How do I update Array Elements matching criteria in a MongoDB document?

I have a document with an array field, similar to this: { "_id" : "....", "Statuses" : [ { "Type" : 1, "Timestamp" : ISODate(...) }, { "Type" : 2, "Timestamp" : ISODate(...) }, ...
0
votes
1answer
3k views

How to deserialize a BsonDocument object back to class

How do I deserialize a BsonDocument object back to the class after getting it from the server? QueryDocument _document = new QueryDocument("key", "value"); MongoCursor<BsonDocument> ...
5
votes
3answers
548 views

save an object with a bidirectional relationship in mongodb using official c# driver

I have two class like this: public Class Company { public IList<Employee> Employees; } public Class Employee { public Company WorkPlace; } when I want to save an object of class ...
5
votes
2answers
536 views

Using MongoDB shell commands on MongoDB 10Gen's driver

I want to simply execute pure MongoDB queries via MongoDb 10Gen's .net(c#) driver. For example . I want to use below command on driver db.people.update( { name:"Joe" }, { $inc: { n : 1 } } ); I ...
4
votes
2answers
206 views

Return BsonDocument in ApiController

I'm working on an API in ASP.NET MVC 4, I'm using MongoDB as a backend. Due to MongoDB storing and returning BSON objects, and MVC4 returning JSON objects, I figured that it would be rather easy to ...
3
votes
1answer
465 views

MongoDB Many Indexes vs. Single Index on array of Sub-Documents?

Wondering which would be the more efficient technique for indexing my document's various timestamps that I need to keep track of, keeping in mind my application is fairly heavy on writing, but heavy ...
3
votes
1answer
2k views

MongoDB C# connections/disconnections (Official driver)

Please tell me how I must connect/disconnect to MongoDB via official C# driver? Question is simple and problem is trivial for first look, but: 1) Do I need to call Disconnect method by myself, or it ...
3
votes
2answers
1k views

How to retrieve an embedded document using the official C# driver for MongoDB?

Given the the following classes and sample document, How do I retrieve a AnswerChoice document from the Question collection where _id in AnswerChoice is '4d6d336ae0f84c23bc1fae00' using the official ...
2
votes
1answer
544 views

LINQ to MongoDB: .Any with a Predicate

I have a Collection in MongoDB of S documents. Each S has a collection of UserPermission objects, each of which have a UserId property. I want to select all the S documents that have a ...
2
votes
2answers
1k views

Unknown discriminator value 'MyEvent'

Using the MongoDB persistance engine in joliver/EventStore causing the error Unknown discriminator value 'MyEvent'. The issue is only caused when I try to load all events for replaying the events like ...
2
votes
1answer
520 views

Is there a way to retrieve data from MongoDB without the _id field?

I am using MongoDB in our project and I'm currently learning how things work. When inserting records, MongoDB auto generates the ID. When querying data, it always returns _id. This creates a problem ...
1
vote
1answer
48 views

How to Get the Server Address of the server that data is pulled from

I know we have it in Java driver using cursor.getServerAddress(). However, I couldn't find any relevant call in C#.
1
vote
2answers
160 views

Error in MongoDB when using C# driver to deserialize a nested class

Usually when I store an object into my collection and add a new property to my object, the mongodb C# driver will use a default value when the property isn't found in MongoDB. However, when I have a ...
1
vote
1answer
164 views

Is there a good open-source MongoDB Queue Implementation for the C# Driver

Not that it wouldn't be easy (or fun) enough to write one, it makes sense not to re-invent the wheel so to speak. I've had a look around at various attempts, but I don't seem to have yet come across ...
1
vote
1answer
2k views

Dealing with how MongoDB stores DateTime when used with Service Locator Pattern

My colleague and I are at an impasse in a debate and other's input would be greatly appreciated. We utilize the Service Locator Pattern and a common interface to abstract all of our data access so we ...
1
vote
1answer
1k views

MongoDB c#: get only an specifield field

I have read this example: SELECT a,b FROM users WHERE age=33 db.users.find({age:33}, {a:1,b:1}) But i can't traslate it in C#. Can anyone help me?
1
vote
1answer
322 views

Partial mongodb upsert using the c# driver?

Mongo version 1.8.2. Assume I have a class like public class Acc{ public int _id { get; set; } public int? Foo { get; set; } public int? Bar{ get; set; } } Acc a = new Acc { _id = 1, Foo ...
1
vote
1answer
523 views

Rename field of complex type that is located in array

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 ...
1
vote
1answer
369 views

Mongodb C# driver - can't use admin authentication to access other databases

When you login as admin user (user of admin database) in MongoDB console, you can then have full access to any database on the same server without need to login to each of them. But, if I use the ...
1
vote
1answer
1k views

MongoDB atomic update via 'merge' document

I know that I can atomically update an existing Mongo document by setting specific fields. The following code will do it: var update = MongoDB.Driver.Builders.Update.Set("InsideLegMeasurement", ...
0
votes
1answer
72 views

MongoDB Aggregation using official C# driver?

I'm using the official C# driver.Have no idea to implement this: Select MAX(TimeStamp) as MaxTimeStamp, ExtNo From AgentStatus Where TimeStamp>=@begin and TimeStamp <=@end Group By ExtNo Any ...
0
votes
1answer
104 views

Using SqlBulkCopy with MongoDB

From a previous question, I'm trying to do a SqlBulkCopy from a MongoDB database, and I'm getting an error and can't find what column type I should have: The given value of type ObjectId from the ...
0
votes
2answers
114 views

How do I resolve a year/month/day date to a more specific date with time data in MongoDB?

I'm working on converting my blog over to use /year/month/day type URLs. I've ran into a pretty bad problem with the concept though. I want to only have down to hour/minute resolution, but of course ...
0
votes
1answer
203 views

update in a nested array using C# Driver in MongoDB

Here is my exact schema: { "_id" : ObjectId("4fb4fd04b748611ca8da0d45"), "Name" : "Agent name", "City" : "XXXX", "BranchOffice" : [{ "_id" : ...
0
votes
1answer
78 views

MongoDB query results ordering (Numeric Range query)

*Mongo newbie here (using Mongo C# Driver on Windows) Hi, I am evaluating Mongo for applying a combination of numeric dimensions . I have a hundreds of numeric fields and create a boolean query(I ...

1 2