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

learn more… | top users | synonyms (1)

0
votes
1answer
199 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
319 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
370 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
196 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
552 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
148 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 ...
0
votes
1answer
146 views

Registering of BsonClassMap for each event type required when setting up mongodb persistence for Oliver's EventStore?

When setting up mongodb persistence for Oliver's EventStore, is registering of BsonClassMap for each event type required? If I don't do this, I get the exception Unknown discriminator value ...
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 ...
0
votes
1answer
53 views

Mongodb query intermittently fails

I have an odd issue querying mongo.. I insert a bunch of records like this; {  "_id" : "1f0aad54-85ef-446c-a02b-76bb0235e49c",  "internalId" : new BinData(3, "VP0LH++FbESgK3a7AjXknA=="),  "Data" : ...
0
votes
1answer
501 views

MongoDB - combining multiple Numeric Range queries (C#/ C# driver)

*Mongo Newbie here I have a document containing several hundred numeric fields which I need to query in combination. var collection = _myDB.GetCollection<MyDocument>("collection"); IMongoQuery ...
0
votes
1answer
93 views

MongoDB C# Query for 'NotLike' on string

I'm using official Mongo C# driver. As suggested in answer to one question I'm using the following for the 'like' operator - Query.Matches("name", "Joe"); My question is how can I achieve the ...
0
votes
3answers
701 views

Update List<string> in mongoDB

I have a list of strings I want to update in MongoDB using C# driver. How do I do this? List<string> Images = someList; var update = Update.Set("Images", Images); collection.Update(query, ...
10
votes
5answers
380 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 ...
3
votes
1answer
304 views

want to store images to gridfs from a given URL

Is it possible to store images to mongo GridFS directly form URL, which I get from API? or I have to store it locally and then insert it into mongo? I tried to insert directly from URL, but C# ...
0
votes
1answer
269 views

MongoDB collection to .Net dictionary best practice

I have an application that performs fast operations on in-memory data. This data is represented in memory as a Dictionary<MyKey,MyData>. The MyKey is a class that contains a few string tags: ...
3
votes
1answer
987 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; ...
0
votes
2answers
418 views

Updating elements inside of an array within a BsonDocument

I have a "Payee" BsonDocument like this: { "Token" : "0b21ae960f25c6357286ce6c206bdef2", "LastAccessed" : ISODate("2012-07-11T02:14:59.94Z"), "Firstname" : "John", "Lastname" : "Smith", ...
2
votes
1answer
214 views

MongoDb Change order of array elements

I work a lot with MongoDb Geospatial indexing, and now I am in the process of replacing the old NoRM framework with the official 10gen C Sharp driver. The problem I am having is that for the existing ...
0
votes
1answer
386 views

Serialize an object graph with MongoDB and C#

I have a Winforms Control from a 3rd party developer and want to store its data directly in a MongoDB. It is a gantt chart which has a list of Resources and a list of Appointments. The Appointments ...
1
vote
1answer
758 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 ...
2
votes
2answers
532 views

MongoDB LinQ “Select” method will really retrieve only a subset of fields?

Searching across the internet how to retrieve a subset of fields in MongoDB, using C# official driver (but using LinQ as the base architecture) I found how to do this in MongoDB shell. // selecting ...
0
votes
1answer
144 views

MongoDB, Sequenced Numbers and the C# Driver

Here is a link to an entry in the MongoDB documentation that describes how to do sequenced numbers: http://www.mongodb.org/display/DOCS/Object+IDs#ObjectIDs-SequenceNumbers My question is what is the ...
0
votes
1answer
427 views

ROW_NUMBER() and RANK() in MongoDB

I have a products table with below schema (ProductID INT, ProductStartDate date, ProductExpDate date, ProductTypeID int, #PacketsInProduct int, Price int, Discount int, Score int) I need to ...
1
vote
0answers
86 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 ...
0
votes
1answer
42 views

Datafiles in /data/db are larger than the data set inserted in MongoDB

I was wondering that for a given set of data, the MongoDB datafiles in /data/db are larger than the data set inserted into the database .Why such happening in mongoDB ? can someone clear me on this.
2
votes
1answer
135 views

OrderBy embedded documents

I'm trying to order my results by the value in an embedded document. Consider a model such as: public class Car { public Guid ID { get; set; } public string Name { get; set; } public ...
2
votes
1answer
196 views

MongoDB + C# Driver + Geospatial fields querying - How to define location property on entities

I'm running version 2.06 of Mongodb and version (1.5) of the C# driver supplied by 10Gen. I want to have latitude and longitude coordinates on one of my entities so I can query entities using GeoNear ...
0
votes
0answers
96 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 ...
2
votes
1answer
516 views

Using mongo db .group with c# driver

I'm trying to do a multiple field "distinct" query, which of course isn't possible (see my attempt here: Selecting a new type from linq query) Following my realization of this, I've found I'm able to ...
1
vote
2answers
109 views

Update MongoDb Class property names

Our website is in production (phase 1)and we use MongoDB with Asp.Net MVC. But for Phase 2, we need to make some changes to our Schema Classes like change property names and change some data types. ...
1
vote
1answer
201 views

Mapping a private backing field with MongoDB C#

I'm trying to get a private backing field mapped in MongoDB. My model looks like: public class Competitor { private IList<CompetitorBest> _competitorBests; public virtual int ...
3
votes
2answers
844 views

Creating a mongodb capped collection using c# api

Using the C# mondodb driver, we currently create our collection like so: MongoServer mongoServer = MongoServer.Create("some conn str"); MongoDatabase db = ...
0
votes
1answer
299 views

MongoDB C# Driver database.GetCollection and magic strings

Just getting into the NoSQL stuff so forgive me if this is a simple question. I am trying to somewhat implement a repository type pattern using a generic repository for the more common operations. ...
2
votes
1answer
220 views

Mapping a collection to subdocuments - Maximum serialization depth exceeded (does the object being serialized have a circular reference?)

I've got the following model: public class Competitor { public virtual int CompetitorId { get; set; } public virtual string TeamName { get; set; } public virtual string FirstName { get; ...
2
votes
1answer
208 views

How to cache some temp data in MongoDB?

I have some client-server application. And as one of its part, I need to implement a paginal approach on client side. I am making data footprint from db (I'm using MongoDB with 10gen's driver) on ...
0
votes
1answer
145 views

Mapping subclasses / embedded to single flat document with MongoDB C# driver

I'm developing an app that has a model using race results / times etc.. I've got a model that looks something like: public class Competitor { public int ID { get; set; } public string Name { ...
1
vote
1answer
712 views

How to increment object fields inside an array using MongoDB?

Initially this is the format of my document: { _id: some id, name: 'some name', versions: [] } In the versions field I store objects like {v: '2.5', count: 5} where count holds the ...
0
votes
1answer
34 views

mongodb-Limiting Embedded item when insert

I want to design a schema where post will not able to contain more than 10 tags. How could i achieve that? Any one please help me?
2
votes
1answer
250 views

Is there any way to skip some documents in GeoNear() MongoDB method?

Lets say I have collection of documents with specified longitude and latitude. type is specified: { id: ObjectId, location : {double, double}, /*array, that contains ...
0
votes
0answers
98 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
2answers
243 views

How can I get field's value without getting whole document?

It seems to be really stupid question, I know. But anyway. Lats say, I have collection of documents of such structure: { _id: idvalue, name: namevalue, location: { long: longvalue, ...
0
votes
1answer
85 views

Remove in MongoDb chsarp fails when using the _id

in a sample program removing items from the mongo db doesn't work when I want to use the id. I assume the problem is that my class has a Id Property, but mongo uses an _id ? So when I trigger the ...
0
votes
1answer
72 views

DB consuming large space

i am newbie to mongoDB ,as i start working with test application (ASP.Net) found that the db consuming large disk space.I was wondering that collections have only small piece of data like a word.So ...
0
votes
1answer
2k views

How to query if array is null or empty using MongoDB and C# Driver?

Background: What I need to accomplish is to remove any records in a collection if a specific array on the record is null or empty. I understand that the C# Driver query to find a null array is: ...
1
vote
2answers
251 views

MongoDb passing predicate argument

in MongoDb I can pass a predicate to an queryable instance for example this.DataBase.GetCollection<BsonDocument>("entity") .AsQueryable<Entity>() .Where(item=>item.id ==5); But now I ...
0
votes
0answers
96 views

Mongo DB connection always fails on first attempt

I have the following code. Always it throws an exception "Unable to connect to the primary member of the replicaset" on the line 3. I replaced the third line with ...
2
votes
2answers
277 views

Odata $top doesn't work with MongoDb

I've stuck into some weird problem. Here is the code AccountsController.cs // GET /api/accounts [HttpGet] [Queryable(ResultLimit = 50)] public IQueryable<AccountDto> Get() { return ...
0
votes
0answers
56 views

Store CultureInfo in mongodb C#

Can someone explain how to store a CultureInfo object in a mongodb object and Uptade methods. I searching to create a Localizedtems Repertory. Thanks. public BsonLocalized Create(Guid id, CultureInfo ...
0
votes
0answers
207 views

Mapping Field Discriminator in C# driver within the Class Map definition

I am using the class map functionality in the cSharp driver to map mongo data to domain objects. Is it possible to use and set the field descriminator within the class map itself. ...
0
votes
1answer
126 views

Representation = BsonType.Int64 does not work properly with Datetime

I am decorating one of my DateTime property in my class with Representation = BsonType.Int64 attribute so that it gets stored in the database with Int64 representation of a date. When I used to store ...

1 3 4 5 6 7 13