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

learn more… | top users | synonyms (1)

3
votes
1answer
1k views

Element 'Id' does not match any field or property of class

I got the result from collection in Mongo , the structure is the same as this [DataContract] public class Father { [BsonId] [DataMember] public MongoDB.Bson.ObjectId _id { get; ...
3
votes
1answer
402 views

Server instance is no longer connected. MongoDB C# driver 1.3.1

I'm running an application on appharbor.com where I'm using a database from MongoHQ. Form time to time I see this error "Server instance penny.mongohq.com:10070 is no longer connected." on appharbor. ...
2
votes
1answer
544 views

Mongodb c# driver FindAll with setFields and AsQueryable

Using MongoDB C# driver, seems that I'm unable to get the data by AsQueryable with setFields and Where condition only by mongo query. I fetched documents by this code var query = ...
2
votes
1answer
298 views

How to find newest document in Mongo Collection (C#)

How do I find the most recent document in a MongoCollection? Currently I'm doing the following, but it seems to be returning the same value regardless: ...
2
votes
1answer
246 views

How do I properly bridge asp mvc 3 and a mongodb database?

I'm a beginner trying to teach myself web development from scratch so I can build the serious social network startup I see in my mind. I've chosen to work with asp.net MVC3 in C# with mongodb. Now, ...
2
votes
1answer
382 views

Managing changes in class structure to be consistent with mongodb collection

We are using mongodb with c#. We are trying to figure out a way to keep our collection consistent seamlessly. Right now, if a developer make any changes to the class structure(add a field or change ...
2
votes
1answer
141 views

Expected update behavior on re-saving while using MongoDB's official C# driver

Trying to understand the expected behavior on re-saving a existing document (from a 3+ level object graph) that was previously saved. Is an update applied to only the top level fields or does it ...
2
votes
1answer
340 views

shutting down Mongo server from C# Driver API

I want to shutdown the mongo server from my C# application when application exits. I am using RunAdminCommand of MongoServer object to do this. Below is the code snippet. MongoServer server = ...
1
vote
1answer
86 views

How to force mongo to store members in lowercase?

I have a collection of BsonDocuments, for example: MongoCollection<BsonDocument> products; When I do inserts into the collection, I want the member name to always be lowercase. After reading ...
1
vote
1answer
54 views

GetDatabaseName:

I have a problem when retrieving the names of existing databases: <code> var connectionString = "mongodb://user:pw@localhost/admin"; var client = new ...
1
vote
1answer
116 views

InvalidCastException: ConstantExpression to LambdaExpression in MongoDB Driver

How can I wrap this into a reusable expression that I can use elsewhere in my code? nv => nv.a == nv2.a I've tried doing this, but seems to return a ConstantExpression rather than a ...
1
vote
1answer
30 views

Is there any way to do remove without the query builder

is there any way to do remove without the query builder? var query = Query.EQ("_id", id); collection.Remove(query); I updated my solution to 1.6 to use Linq query but I found I still need to use ...
3
votes
0answers
171 views

MongoDB and Multiple C# Client Threads

I have a single primary instance of a MongoDB to connect to. I am using the C# driver (latest revision) to connect and utilise MongoDB. My client application is multi-threaded whereby processes will ...
1
vote
0answers
37 views

Any official MongoDb session state provider available for C# .NET

I am just looking for session state provider for .net with MongoDb, actually i do not find any official Nuget packages, or better reliable production quality one. Please advice if we have any ...
1
vote
0answers
153 views

Why does sending files from GridFS via MVC4 take so much time?

I want to send images stored in MongoDB using GridFS via a MVC4 Web app to the browser via my LAN environment, but it take ~500ms until the image is sent to the browser. Google Chrome network ...
1
vote
0answers
122 views

Integrating Autofac and MongoDB C# driver

.NET 4.0 latest autofac version and latest C# driver We are in the process of integrating the Autofac DI container into our MongoDB app and things have been going swimmingly with one exception which ...
1
vote
0answers
92 views

Connection to remote host MongoDB breaks after a certain number of inserts to the collection

I have my Mongo DB v2.1.2 hosted on remote server. After inserting 58070 records i am getting the following message exception more often Message = "A transport-level error has occurred when sending ...
1
vote
0answers
71 views

How to duplicate/clone a database in MongoDB with C#

At some events, I want to call a function, that should make a copy of the database and save it as a new MongoDB database with it's name as current Date time. I just need the C# syntax to ...
1
vote
0answers
262 views

MongoDB C# Socket Exceptions in IIS 7.0 Web Garden (Ex: Only one usage of each socket address (protocol/network address/port) is normally permitted)

I have an ASP MVC app using the 10gen Mongo C# driver (github) to connect to a database server on a specific port. I have this deployed in an IIS 7.0 web garden with 3 worker processes. Every few ...
1
vote
0answers
636 views

C# Mongodb get cursor count

I am trying to find out if a document exists in a collection using the code below. Whenever the query doesn't find any documents I get a StackOverflowException. What am I doing wrong with this? ...
0
votes
0answers
28 views

Getting InvalidOperationException Exception from mongodb c# driver for queries that return large dataset

I have a restful service in c#.net that talks to mongodb. When I return about 20,000 records to client the service works fine. But increasing the returned data set causes below exception on server ...
0
votes
0answers
29 views

Unit of maxDistance in Near<T> (MongoDB C# Driver)

What is the unit type for maxDistance argument of the Query<U>.Near<T> method (in MongoDB C# Driver)? Notes: I have created an index and I have checked that it's a "2d" index: var keys = ...
0
votes
0answers
25 views

Find recursive n-subarray in MongoDb

I'm trying to create an account with multiple levels of menus. I managed to do but I'm limited to levels I enter in the search. var pai = repositorio.Collection.Find( Query.Or( ...
0
votes
0answers
30 views

How to save the MapReduce result in MongoDB?

I have two collections: PriceShop(ShopId, Price, DrugId), Drug(DrugId, MaxPrice, MinPrice). I use map/reduce to find the maxPrice, minPrice of the same drug in the PriceShop Collection, and then use ...
0
votes
0answers
43 views

How to write and read large files from MongoDB gridFS (C#)?

I am using the MongoDB CSharp driver. Anyone has idea about any specific API, Library, Code that I can use to write and read large vide files in gridFS? Can the driver itself handle it? (and any ...
0
votes
0answers
15 views

How to use Mongo C# driver to perform a query with full text and other queries?

We are trying to write a query that performs the following: Search for full text in the name or address or menu of a restaurant (we got this working with index etc) Search if the restaurant is ...
0
votes
0answers
18 views

mongoDb c# driver upgrade to 1.8.1

I'm upgrading mongodb c# driver from 1.4.1 to latest 1.8.1 I removed QueryComplete mentions, Reconstruct Exists using. So, all my solution is buildable now. But when try to request data from server I ...
0
votes
0answers
31 views

Properly using / handling DateTimeOffset in MongoDB

public class ScheduledEvent : Event { public DateTimeOffset StartDateTime { get; set; } } StartDateTime = 5/27/2013 2:09:00 AM +00:00 representing 05/26/2013 07:09 PM PST What's recorded in ...
0
votes
0answers
48 views

MongoDB column type conversion

How do I do the following: Public Class Test { public ObjectId Id { get; set; } public string Name { get; set; } public BsonDouble A {get; set; } } var constr = "mongodb://localhost"; var ...
0
votes
0answers
13 views

query on parent/base class in Mongo

I am trying to perform a query on a parent/base class in Mongo. Suppose I have class User { string First {get;set;} string Last {get;set;} } and class Student : User { string ...
0
votes
0answers
24 views

update with calculated values

I am trying to do create an update statement that uses a calculated value and I can see how you can use the aggregation framework to do a query but how about the update. I'm doing it in c#. I need the ...
0
votes
0answers
10 views

SQL view in mongodb with c# driver

SQL view gets together data from different tables into a single table. Can I accomplish this kind of functionality in MongoDb with c# driver?
0
votes
0answers
25 views

Retrive a list of sub documents from MongoDb

I have a model that looks like this public class Event { public string Id { get; set; } public string Name { get; set; } public List<Person> Attendees { get; set;} } public class ...
0
votes
0answers
74 views

Suggestion for searching content in MongoDB in MVC Ajax application

Our database stores photo albums and photos. Each album has title, tags, description. Each photo has title, tags and description. All I want is the ability to show 5 search results as soon as the ...
0
votes
0answers
93 views

How to test that a string field in a MongoDB document is not empty?

I am trying to get the number of documents that have a field with an empty string. This field, lets call it "Field_One" is present in all documents (so, to be clear, I am not trying to find if the ...
0
votes
0answers
177 views

MongoDb query search text

Below is my Mongodb data structure. i want a query in c# where i can search the item depending upon the customerid,protofolio and metatags. { "_id" : ...
0
votes
0answers
62 views

Write a custom attribute in c#

How can I write a custom attribute which can or does execute a function. The driver tutorial says to look at existing attributes - but where?
0
votes
0answers
52 views

Update array into nested collection

How can I update an array into mongodb nested collection? Code: public bool UpdateTest(string id, List<Test> tests) { IMongoQuery query = ...
0
votes
0answers
62 views

C# MongoDB “Near” Query

I have a mongo collection that look like that: { "_id": { "$oid": "50e9f38fbd7680c8090bcb4" }, "guid": "D3G5wQ8RZL", "lat": 37.503287248864, "lng": -121.97620341421, } I want to preform "NEAR" ...
0
votes
0answers
54 views

MongoDB Driver throwing error and no help found

I am recently facing this cryptic error from MongoDB error which I did not see before. I have this piece of code which is basically a test case and It does a find & modify on some MongoDB document ...
0
votes
0answers
698 views

Multiple actions were found that match the request Error WEB API MongoDB c#

Im fairly new to ASP.NET MCV 4 as well as Mongo DB and trying to build web API. I thought I had finally got it right but when I start the app and enter: http://localhost:50491/api/document into my ...
0
votes
0answers
108 views

How can I connect MongoDB.Bson.dll and MongoDB.Driver.dll to Windows Phone project?

I use MongoDb in my Windows Phone project, and I want to connect MongoDB.Bson.dll and MongoDB.Driver.dll. But I have error "Can not add a link because the project was not built with runtime Windows ...
0
votes
0answers
236 views

Mapping Complex Objects with MongoDB

Given an arbitrarily complex hierarchy of objects, e.g. class ComplexObject { public ICollection<A> Components { get; set; } ... } class A { public ICollection<int> Values{ ...
0
votes
0answers
124 views

Join multiple collections on multiple keys using map reduce in Mongo DB.

I know a way to join multiple collections using a same key, and I thinks its not possible to join multiple collections on multiple keys but wondering anyone know a way to do it. Lets say I have a ...
0
votes
0answers
93 views

mongodb select statement, Linq query

Assume data as following Person { "Name" : "Albert", "YOB" : 1900, // Year of born "Childs" : { "Name" : "Alan", "YOB" : 1923, "Childs" : { "Name" : "Bob", ...
0
votes
0answers
152 views

Search dynamic field in mongo

I need to return a result from my Person in List form. Below is my MongoDB structure : Person { "Name" : "Age" : "Childs" : { "Name" : "Age" : "Childs" : { // Repeat ...
0
votes
0answers
102 views

C# MongoDB - BatchInsert not adding all documents

I'm having trouble using InsertBatch with my MongoDB instance. I query another data store, to get a load of objects, and I'm trying to store them in Mongo. When I do something like: //comes from ...
0
votes
0answers
99 views

MongoDB C# driver crash on First() call

I am having issues with the latest MongoDB C# driver (v1.4.2.4500) crashing when I query this document: { "_id" : "4fdfe705b48c6b24dcab994a", "CreatedDate" : new Date("6/18/2012 19:42:13"), ...
0
votes
0answers
213 views

Mongo C# driver dictionary serizalization

I'm trying to configure document serialization in my app. Problem is - seriializing object have dictionary with a custom data and some times keys in dictionary looks like "Test.0" or "Test_0". If ...
0
votes
0answers
295 views

Nested queries in MongoDb using official C# driver

I need to query something like this: <Parent> <Child1> </Child1> <Child2> ...

1 2 3