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

learn more… | top users | synonyms (1)

2
votes
1answer
529 views

Is there a way to automatically make MongoDB C# Driver not to throw an EndOfStreamExceptionwhen the primary server goes down?

I've been testing out the official MongoDB C# Driver with a replica set of 3 instances. I've created a simple app which accesses the replica set in a loop. My question is: Is it possible to make the ...
0
votes
2answers
88 views

MongoDB CSharp Driver: How do I deal with “Ensure that known types are derived from the mapped class.” error?

I have 2 fairly simple classes (map and game), and when I execute this query: if(gameCollection.Any(g => g.NumPlayers <GameConstants.MAX_PLAYERS_PER_GAME)) I get the error: Class ...
0
votes
1answer
204 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" : ...
2
votes
1answer
176 views

MongoDb C# driver: mapping events to read database in cqrs solution

We're using MongoDb as a datasource for our application, which is built using cqrs and event sourcing. The problem that we faced today is what is the best way to implement mapping (denormalization) of ...
0
votes
2answers
269 views

MongoDB C# Remove doesn't work

i have this code for removing an item froma a mongofb collation private MongoCollection<T> GetCollection() { connectionString = "mongodb://localhost/?safe=true"; server = ...
2
votes
1answer
85 views

Querying object's field array values in MongoDB

If I have a class like this: public class Car { public string Model { get; set; } public List<string> Types { get; set; } } and do: Car _car = new Car(); _car.Model = "1992"; ...
0
votes
0answers
122 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 ...
3
votes
1answer
155 views

Make a query using C# Mongo driver without creating Query object?

According to the documentation, the MongoDB can be queried by creating Query object using the MongoDB driver for .Net, is there any alternative to query the MongoDB using the MongoDB query string? I ...
0
votes
2answers
204 views

MongoDB commands from DOS or Windows

I'm trying to copy 4 collections from one Mongo database to another on the same machine from C# program automatically. How do I do that? Is there a simple copy collection/database command in MongoDB ...
1
vote
1answer
210 views

How to replace substring in mongodb document

I have alot of mongodb documents in a collection ABC of the form: { .... "URL":"www.abc.com/helloWorldt/..." ..... } I want to replace helloWorldt with helloWorld Final Output: { .... ...
0
votes
1answer
169 views

Mongodb C# driver sort by nested attribute

How do i use the C# driver to sort by a nested object (from a mapreduce query) {"_id": { "date" : "02/01/2001"} }" SortBy.Descending("_id") 'Sorts by "_id" descending SortBy.Descending("???") ...
1
vote
2answers
416 views

MongoDB C# Driver multiple field query

Using the MongoDB C# driver How can I include more than one field in the query (Im using vb.net) I know how to do (for name1=value1) Dim qry = Query.EQ("name1","value1") How can I modify this ...
1
vote
1answer
240 views

MongoDB FindAndModify dependent on document field/value

I have a document similar to this: { ... "LastAccess" : "2012-09-19T05:47:45.982Z", // Time of last document access "Expires" : "2012-09-19T06:47:45.982Z", // Time this document ...
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 ...
0
votes
1answer
98 views

Mongodb exception failed to get next data vb.net

I have a program to get data from database mongodb but I failed to get next data This code Dim listOfBusiness = New Generic.List(Of Business) Dim mongo As MongoServer = ...
0
votes
2answers
199 views

MongoDB (C# Driver) issue deserialising an ObjectID field

I am using MongoDB to deserialise a document into a C# object and am having issues with ObjectID fields. This is the error I am getting: Required element 'LayoutId' for property 'LayoutId' of ...
0
votes
1answer
129 views

Group-based Cross-Collection query in Mongodb (inc. Having clause)

I have the following SQL Query that needs to be translated to Mongodb and I just cant find a good way of doing it (which doesnt entail loading documents from two collections and perform a query ...
0
votes
1answer
52 views

Mongodb C# driver - Bounding box query (potential driver bug?)

I am trying to perform a bounding box query on a mongo db collection. The collection has been there for quite a while and I recently upgraded my driver from 1.3 to 1.6 to take advantage of some new ...
0
votes
1answer
165 views

MongoDB 10Gen Driver null handling

we are having DateTime field and we are reading from MongoDB collection and deserialising into that class. Lets say if it has null in DateTime DB field and MongoDriver is trying to set null to that ...
0
votes
1answer
147 views

Sharding in mongodb with c# for getting the records as required

I have 2 millions of data in some csv files... I am getting those files and reducing it to get result sumthing like this.,.. { "_id" : "08-08-2012 05:00", "value" : { "CollectionDate" : "08-08-2012 ...
1
vote
1answer
123 views

MongoDB C# - Hide property from serializer

This is what my user model looks like: namespace Api.Models { public class User { [BsonId(IdGenerator = typeof(StringObjectIdGenerator))] [BsonRequired] public string ...
0
votes
0answers
91 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
146 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
2answers
223 views

MongoDB C# - update using custom strongly-typed objects not allowed?

I am trying to perform an update using strongly-typed objects. For example, public void setAppointmentPrefs(string UserName, IEnumerable<AppointmentInfo> info) { var query = new ...
1
vote
2answers
437 views

How do I get the last item in a MongoDB collection?

I'm using MongoDB for sometime to perform all sort of fast inserts or having as a log, but I'm having some trouble to get a really simple query How, in Mongo, would I do to get a similiar to this ...
0
votes
1answer
298 views

Incremental MapReduce in c#.net

I have data of following format.. Type C_ID Assitor CollectionDate granulity counter A a 10 08-08-2012 00:00 15 0.9912378 B a 5 08-08-2012 00:00 15 0.1860929 C b ...
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
0answers
114 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 ...
2
votes
1answer
400 views

Incremental MapReduce with time interval in mongoDB

i got some records from server with time interval of 10 minute (in 1 hours i will get 6 files) i want to do map reduce on every 1 hours in next hours i will have to do map reduce of next group on 6 ...
2
votes
3answers
442 views

mongoimport doesn't import the object properly

In Mongodb v2.2 When I try to import one simple json document file like this from my .json file into an empty collection I get 13 objects imported. Here is what I'm doing. this is the data (I've ...
3
votes
1answer
79 views

How to you make changes of document properties in MongoDB

I`m new to MongoDB and i just successfully migrated from MS SQL to MongoDB. When i made my custom classes for MongoDB collections i had some extra property whitch i dont need it. How i can remove it? ...
0
votes
1answer
263 views

Mongodb multivalue with oData, collection data lost

I am trying to use MongoDB as my data and have oData to generate feed in C# ASP.Net. My class looks like this: public class Student { String FirstName; String LastName; list<course> ...
0
votes
2answers
475 views

MongoDB - override default Serializer for a C# primitive type

I'd like to change the representation of C# Doubles to rounded Int64 with a four decimal place shift in the serialization C# Driver's stack for MongoDB. In other words, store (Double)29.99 as ...
1
vote
1answer
226 views

C# MongoDB - binding object properties, _id null on insert

When I insert to Mongo, I do not want to define _id, but I do want to READ _id. When using an object such as public class MyClass { public Object _id { get; set;} public String ...
0
votes
1answer
103 views

Need help creating 2 identical databases in SQL Server / MongoDB (with hierarchy) (in C#) [closed]

I'm creating a simple app that will let me test SQL Server vs MongoDB query speed (in C#). For that I need to create two identical and fairly big databases (let's say 1 mil records each) with some ...
1
vote
1answer
44 views

What's the best way to adapt different data types between insert/select from MongoDB?

I think I am missing a simple solution here. When I run a select (using Linq-style on IQueryable) that returns IQueryable, I may want MyClass to return differently-formatted key/values than I will use ...
0
votes
1answer
149 views

How to convert this command from C# to VB.NET?

// Traditional approach, // fluent interface BsonArray a2 = new BsonArray().Add(1).Add(2); // Values argument int[] values = new int[] { 1, 2 }; BsonArray a3 = new BsonArray(values); //It doesn't ...
1
vote
2answers
137 views

How to run both sorting and filtering on mongodb server with c# code

I've found c# code like this (Collection is of type MongoCollection<T> here): Collection.AsQueryable() .OrderByDescending(i => i.SomeField) .Where(i => i.OtherField == "bla-bla") ...
0
votes
1answer
959 views

MongoDB C# Driver - How to InsertBatch using a List of Dictionary<string, string>

I'm new to mongodb + C# driver so forgive any naivety on my end. I'm attempting to do a batch insert on a collection of key-value-pairs and as such my data structure is of type ...
0
votes
1answer
51 views

Proper way to update a Document with mongocsharpdriver

i'm creating a simple document manager for a dummy Project for now i have Insert and Update methods public ObjectId Insert(T model) { _collection.Insert(model); return model.Id; } public ...
1
vote
0answers
57 views

How to see query that is constructed by linq in MongoDB? [duplicate]

Possible Duplicate: Translate Queryable<T> back to IMongoQuery I want to see queries that is constructed by linq in MongoDB. I have been checked documentations about profiling but i ...
0
votes
1answer
54 views

How to modify string field in collection which resides in MongoLab

I have a collection in MongoLab called CollectionA. In every document within this collectionA, i want to modify a field(say Field1 which is string) value from say "hello" to "hello world" What is ...
1
vote
1answer
159 views

How to update a record in MongoDB with 2 different classes without deleting other fields

Let's say I have two classes like below: public class Class1 { .... public int CityId {get;set;} public string CityName {get;set;} public ObjectId _id {get;set;} } public class Class2 : Class1 { ...
1
vote
2answers
134 views

MongoDB: Is it possible to set the case of a BsonElement by default?

I am using the Mongodb official driver and I want to set by default the naming of the elements to lower case to avoid code like this: public class Localization { [BsonId(IdGenerator = ...
0
votes
1answer
194 views

How to Clone/Copy a POCO Entity for MongoDB with BsonSerializer in the C# Driver

What's the best way to make a new copy of a MongoDB POCO entity using the official C# driver? I've tried this; public T Clone() { var bsonWriter = new BsonDocumentWriter(new ...
6
votes
1answer
316 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 ...
3
votes
2answers
362 views

What are drawbacks of storing Guid as String in MongoDB?

An application persists Guid field in Mongo and it ends up being stored as BinData: "_id" : new BinData(3, "WBAc3FDBDU+Zh/cBQFPc3Q==") The advantage in this case is compactness, the disadvantage ...
0
votes
2answers
191 views

How to get last N documents from collection in mongo?

In C# how can I get last N inserted documents from the collection in mongo?
0
votes
1answer
544 views

C# MongoDb Connect to Replica Set Issue

According to the mongodb website, I should be able to connect to a replica set if I just give it one member from the replica set: "The C# Driver is able to connect to a replica set even if the seed ...
0
votes
1answer
147 views

Partial Update on MongoDB Error

I'm trying to have a partial update on one of my documents in MongoDB, using C# driver. I've followed the following posts: How do you update multiple field using Update.Set in MongoDB using official ...

1 2 3 4 5 13