The MongoDB C# Driver is the 10gen-supported C# / .NET driver for MongoDB.
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 ...
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 ...
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 ...
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.
14
votes
4answers
4k 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 ...
13
votes
5answers
1k 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 ...
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 ...
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 ...
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;
...
10
votes
5answers
378 views
Converting data from Mongo to MySQL (110M docs, 60Gigs) - Tips and Suggestions?
I have been tasked with porting data from a MongoDB database to a MySQL database.
(There are strong reasons for porting - so it has to be done).
The MongoDB collection:
Has approx 110 Million ...
10
votes
3answers
869 views
What is the right way to manage MongoDB connections in ASP.Net MVC?
What is the best practice for managing the MongoServer class life cycle? Should I create one and close it at the end of each request or should it be kept as a singleton for the entire life of the app ...
10
votes
4answers
1k 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 ...
9
votes
2answers
4k views
How do I use SafeMode with the MongoDB C# driver
I found that some methods of the official MongoDB C# driver use SafeMode and return SafeModeResult. What is this SafeMode and how do I use it? It would be great to see some use cases - for example, a ...
9
votes
3answers
943 views
Is there mongodb C# driver support System.Dynamic.DynamicObject in .NET 4?
Im working on a project that use .NET Razor and mongodb. I would like to do something like this:
@{
var feeds = DP.Database.GetCollection("feeds").FindAll();
}
<ul>
@foreach (dynamic ...
8
votes
2answers
3k 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 ...
8
votes
2answers
3k 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.
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 ...
8
votes
4answers
692 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
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
2answers
1k 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 ...
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
1answer
751 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.
...
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 ...
6
votes
2answers
2k views
Suitability of MongoDB for hierarchial type queries
I have a particular data manipulation requirement that I have worked out how to do in SQL Server and PostgreSQL. However, I'm not too happy with the speed, so I am investigating MongoDB.
The best way ...
6
votes
1answer
315 views
Task.Run never completes when testing using a HttpClient
Today I've run into a problem when creating a Web API using async ApiControllers.
I'm using MongoDB and since the C# driver doesn't support async, I tried to implement it in my repository layer.
The ...
6
votes
2answers
2k 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
6
votes
1answer
1k 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 ...
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 ...
5
votes
2answers
457 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
4answers
3k 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
},
{
...
5
votes
2answers
2k views
Get _id of an inserted document in MongoDB?
say I have a product listing. When I add a new product I save it using something like
var doc=products.Insert<ProductPDO>(p);
The problem is that I want after this is done to redirect the ...
5
votes
1answer
1k 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 ...
5
votes
1answer
1k views
How to use $push update modifier in MongoDB and C#, when updating an array in a document
I've run the following code in mongo shell:
db.unicorns.insert({name: 'Dunx', loves: ['grape', 'watermelon']});
and now I've something like this in my MongoDB collection:
{name: 'Dunx', loves: ...
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 ...
5
votes
2answers
721 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
3answers
547 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
534 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
1answer
528 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
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": ...
4
votes
4answers
2k views
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:
public enum Gender
{
Female,
Male
}
Now if some imaginary User exists with
...
4
votes
1answer
709 views
Query near vs. within
Using MongoDB I'm querying homes that are within 25 miles of a lat/long.
My first attempt to do this used the near command, like so:
var near = Query.Near("Coordinates", coordinates.Latitude, ...
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",
...
4
votes
2answers
659 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
3answers
2k 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 ...
4
votes
1answer
3k 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 ...
4
votes
1answer
1k views
How can I update mongodb document for adding a new item to array?
I couldn't figure out insert to a sub array...
_id
MyArray
--Item
----ArrayItemId
----Name
I want to insert items to MyArray...
How my update document should be?
MyCollection.Update(
new ...
4
votes
1answer
2k views
MongoDB field-array searching (C#, How to?)
Please tell me how make search by fields-arrays? I have some fields of type List<Int64>. For example first document has field-array with numbers [1,2,3,4] and second document has such field with ...
4
votes
1answer
1k views
Unified data access layer for MongoDB and SQL Server
Our ASP.NET MVC project uses MS SQL Server (for most of the data) and MongoDB (least important stuff like audit logs, internal messaging system, notifications etc.) at the same time.
So the question ...
4
votes
1answer
2k views
IsoDate and DateTime in MongoDB using C#
Let us suppose that I want to query mongo on the dateTime. I have two C# variables representing the start and the end date.
1) {20.10.2011 00:00:00}
2) {22.10.2011 00:00:00}
Now the ...
4
votes
2answers
1k views
Convert MongoDB BsonDocument into a string
How do a convert an entire MongoDB BsonDocument into a string?
(I'm using the official C# driver)