Tagged Questions

Useful links: Downloads Reporting Bugs Source code on github

learn more… | top users | synonyms (1)

19
votes
5answers
3k 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 ...
14
votes
1answer
3k 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 ...
9
votes
4answers
461 views

Any good tutorials for the offical MongoDB C# Driver?

I'm currently looking to use MongoDB in a C# project and I'm interested in using the official C# Driver. The official 'tutorial' is more a reference than a tutorial (see ...
9
votes
1answer
701 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 ...
9
votes
5answers
695 views

What database systems should an startup company consider?

Right now I'm developing the prototype of a web application that aggregates large number of text entries from a large number of users. This data must be frequently displayed back and often updated. At ...
8
votes
1answer
623 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.
8
votes
4answers
497 views

MongoDB, C# and NoRM + Denormalization

I am trying to use MongoDB, C# and NoRM to work on some sample projects, but at this point I'm having a much harder time wrapping my head around the data model. With RDBMS's related data is no ...
7
votes
4answers
282 views

Mongo Schema-less Collections & C#

I'm exploring Mongo as an alternative to relational databases but I'm running into a problem with the concept of schemaless collections. In theory it sounds great, but as soon as you tie a model to ...
7
votes
1answer
898 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 ...
7
votes
1answer
635 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 ...
5
votes
3answers
133 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
188 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 ...
5
votes
2answers
221 views

Adding complex classes to Mongo

I'm having trouble when trying to add complex types to existing documents in Mongo. I have the following two classes. public class UserObjectCollection { [BsonId] public Guid UserId { get; ...
5
votes
1answer
208 views

MongoDb's C# Drivers, is it possible to wrap it in a generic session?

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 liking is ...
5
votes
2answers
162 views

Profiling MongoDB queries when using C# driver

Is there a way to log the actual queries that are produced by the MongoDB C# driver and sent to the mongodb? Like in SQL Server, you have SQL Profiler that shows you all the incoming queries.
5
votes
2answers
513 views

Does MongoDB support soundex or fuzzy matching?

Does MongoDB support soundex or fuzzy matching? I want to spot dupes of basic contact name and address fields. I'm using the official C# driver. Thanks
5
votes
2answers
1k views

MongoDB C# SafeMode (official driver)

As i found some methods of official MongoDB's C# driver use SafeMode and return SafeModeResult. Please tell me what is this SafeMode and how to use it? Will be great to see some usecases;) For example ...
4
votes
4answers
98 views

Is it Ok to use mongoDB passwordless?

I am planning to install mongodb and the windows service which is connecting to it to the same machine. That machine will be in isolated network. When we do it like that. Is it ok to connect local ...
4
votes
1answer
756 views

Retrieve data from mongodb using C# driver

I'm using official mongodb driver for c# in my test project and i've already insert document from c# web application to mongodb. In mongo console, db.blog.find() can display entries I've inserted. but ...
4
votes
4answers
407 views

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 }, { ...
4
votes
2answers
393 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 ...
4
votes
3answers
437 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": ...
4
votes
2answers
197 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 ...
4
votes
2answers
216 views

MongoDB: Disposing a cursor

Excerpt from C# Driver: It is important that a cursor cleanly release any resources it holds. The key to guaranteeing this is to make sure the Dispose method of the enumerator is called. The foreach ...
4
votes
1answer
345 views

MongoDB Geospacial search and official C# driver

Can some expert point the best ways to a Geospacial search using official C# driver in MongoDB. Best Object constructor(strings /doubles), Build an index, find near. Many thanks for your help. ...
4
votes
2answers
388 views

MongoDB C# Driver: Ignore Property on Insert

I am using the Office MongoDB C# Drive v0.9.1.26831, but I was wondering given a POCO class, is there anyway to ignore certain properties from getting inserted. For example, I have the following ...
4
votes
2answers
420 views

Has anyone had issues with the 10Gen supported c# driver

I'm seeing a ton of these errors "An existing connection was forcibly closed by the remote host" in the Mongo log since I switched from the open source c# driver to the 10Gen supported one. Once ...
4
votes
3answers
953 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 ...
4
votes
1answer
677 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", ...
4
votes
3answers
2k 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).
3
votes
1answer
74 views

Performing a set difference in MongoDB

I have two different collections with a common field say, a UserId. There are also other attributes that qualify the UserIds. For Example: Collection 1: {UserId, SellsToUserId} Collection 2: ...
3
votes
1answer
166 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 ...
3
votes
2answers
110 views

Is there any free / Open source Mongo DB browser available? [closed]

Possible Duplicate: Mongo interface I am new to mongo db, and i am looking for a user interface for Mongo DB, I am storing data in my Mongo Db and want to check If its getting Stored ...
3
votes
5answers
403 views

MongoDB slow writes causes socket time out exception

I am having performance issues with MongoDB. Running on: MongoDB 2.0.1 Windows 2008 R2 12 GB RAM 2 TB HDD (5400 rpm) I've written a daemon which removes and inserts records async. Each hour most ...
3
votes
1answer
87 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
182 views

BsonValue and custom classes in MongoDB C# Driver

I'm trying to use $push in an update query in mongodb, with the c# driver. The Update.Push(...) method requires a string name (that's fine), and a BsonValue to be 'pushed'. This is where I run into ...
3
votes
1answer
122 views

Why using sharding with MongoDB?

We started to use MongoDB at work. So far so good however I was asked to assess if MongoDB could do Replica Set and Sharding at the same time. After searching for a while I find out that yes it can ...
3
votes
1answer
85 views

Mongo: Selecting X elements from an array placed in an object

I have the following collection for a user in a MongoDB: { "_id" : 1, "facebook_id" : XX, "name": "John Doe", "points_snapshot" : [{ "unix_timestamp" : 1312300552, "points" : 115 ...
3
votes
1answer
340 views

MongoDB / C# Driver and Memory Issue

I'm using MongoDB 1.8.2 (Debian) and mongo-csharp-driver 1.1.0.4184 (IIS 7.5/.Net 4.0 x64). Multiple items are inserted every second in a existing collection with ~ 3,000,000 objects (~ 1.9 GB). The ...
3
votes
1answer
269 views

mongoDB Rename embedded field

how do we rename embedded fields using C# with mongoDB ? An example of document Person would be: { Id: 1, LastName: "Smith", FirstName: "John", Orders: { Id: 1, Name: "Trousers" // ...
3
votes
3answers
437 views

MongoDB C# driver - serialization of POCO references?

I'm researching MongoDB at the moment. It's my understanding that the official C# driver can perform serialization and deserialization of POCOs. What I haven't found information on yet is how a ...
3
votes
1answer
255 views

Maintain Id property name in embedded doc with mongo C# driver

I have a mongo document that contains an array of embedded documents. The embedded documents have a property named "Id". { Name: "Outer object", Embedded: [ {Name: "Embedded A", Id: ...
3
votes
2answers
133 views

How can you debug stored javascript functions in MongoDB?

I'm thinking of moving some workflow logic from C# code to stored JS in MongoDB (for example, wen a user sends a message, a bunch or records is to be created in different collections, which right now ...
3
votes
2answers
361 views

How to find min value in mongodb

How do you do the equivalent of SELECT MIN(Id) AS MinId FROM Table in MongoDB. It looks like I will have to use MapReduce but I can't find any example that show how to do this. Thank you.
3
votes
3answers
313 views

'Unexpected element: XX' during deserialization MongoDB C#

I'm trying to persist an object into a MongoDB, using the following bit of code: public class myClass { public string Heading { get; set; } public string Body { get; set; } } static void ...
3
votes
3answers
197 views

Fetch inherited instances from MongoDB using C#

I'm using the official MongoDb C# driver. My scenario: I store objects into MongoDb. All objects are instances of classes that inherit from the same root class. At design time I do not know all ...
3
votes
2answers
568 views

Creating MongoDB Unique Key with C#

I am a total n00b with MongoDB and I am fighting to create a unique field EmailAddress. I've already seen in forums that I have to create an index, but it didn't work out for me so far. Does anyone ...
3
votes
3answers
477 views

mongodb + silverlight

Has anyone worked with mongodb from within Silverlight? What driver did you use? Silverlight supports only asynchronous sockets; but it looks like available C# drivers are synchronous.
3
votes
1answer
1k views

MongoDB c# : Question about pagination

Using a paged result of some query i need to get from what page is a point.The object is return the data positioned at the right page when you push the point out of the scope opening the paged result ...
3
votes
1answer
558 views

MongoDB: How to load collection with nested array in C#?

I have collection called "servers" with following documents. { name: "West", ip: "123.123.123.123", channels: [ { name: "English", port: "1234", ...

1 2 3 4 5 6