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

learn more… | top users | synonyms (1)

1
vote
1answer
88 views

What is new way of setting DateTimeSerializationOptions.Defaults in mongodb c# driver?

I was using this line to set the datetime defaults. DateTimeSerializationOptions.Defaults = DateTimeSerializationOptions.LocalInstance; I get this warning. ...
0
votes
1answer
30 views

(mongodb) Fetching a bson object within a bson object using csharp

I have a collection which contains documents like: { field1: {subfield1:{ssfield1:5,ssfield2:6},subfield2:6}, field2: 1, ... } I'd like to fetch only the subfield, but I'm not sure how to get ...
0
votes
2answers
57 views

MongoDB embedded document indexing issue

I have data in a mongodb collection in the following format: { _id: ObjectId, Product: string, Modules: [ { StaticModuleId: Int64, Set: [ { ...
1
vote
2answers
48 views

'Cursor not found' error when use a Tailable Cursor with NoCursorTimeout

I created a capped collection with a 50M default size. More recently, I noticed that I get a Cursor not found error when a capped collection storage size goes over 50M. I'm not sure what reason causes ...
0
votes
1answer
28 views

Querying documents with arrays in MongoDB

I have a document which has an array property that contains ids of documents stored in another collection, like below: movie: { title: 'A title', genres: ['id_1', 'id_2', 'id_3', 'id_4' ] } Now I ...
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
1answer
87 views

What is the optimum bulk item count with InsertBatch method in mongodb c# driver?

I heard that large batch sizes don't really give any additional performance what is the optimum?
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
3answers
206 views

Array intersection in MongoDB

Ok there are a couple of things going on here..I have two collections: test and test1. The documents in both collections have an array field (tags and tags1, respectively) that contains some tags. I ...
0
votes
1answer
43 views

Enum can't be deserialized when using Linq

So I have this enum public enum JobStatus { Created = 0, Assigning = 1, Assigned = 2, Started = 3, Finished = 4 } In this interface public interface IJob { Guid Id { get; ...
0
votes
2answers
52 views

MongoDB C# Driver - InsertBatch get affected document count

var collection = database.GetCollection<Publication>("Publications"); var result = collection.InsertBatch(bookCollection); I want to get affected document count. And i am getting ...
1
vote
1answer
56 views

How to Get the Server Address of the server that data is pulled from

I know we have it in Java driver using cursor.getServerAddress(). However, I couldn't find any relevant call in C#.
1
vote
1answer
62 views

Mongo c# driver freezes and never returns a value on Update()

I have a long running operation that inserts thousands of sets of entries, each time a set is inserted using the code below. After a while of this code running, the collection.Update() method freezes ...
2
votes
2answers
51 views

Change size of Objectid

In MongoDb ObjectId is a 12-byte BSON type. Is there any way to reduce the size of objectID?
0
votes
1answer
52 views

MongoDb Query doesn't return all of the time

I have a very simple query that I am running against Mongo using the official C# driver 1.8 that only returns from performing the query about 50% of the time. I have a unit test and if I run the ...
1
vote
1answer
76 views

MongoDB 2.4's “Limit Number of Elements in an Array after an Update” using C# driver?

MongoDB 2.4 added a new "Limit Number of Elements in an Array after an Update" feature. This is how it can be used through the shell: db.students.update( { _id: 1 }, ...
0
votes
2answers
72 views

How to query mongo collection on multiple strings

I am new to Mongo Db and trying to write to write some queries. I need to fetch list of products whose brand value is not equal to 'any' or 'none' or contains 'not'. I have tried something line this ...
1
vote
1answer
235 views

While Batch Inserting to Mongodb WriteConcern detected an error 'E11000 duplicate key error index

I am creating a List<MyCollectionItem> and use insertbatch method to insert the list. (_collection.InsertBatch(entities)) I do not set an id to MyCollectionItem object. And I expect mongo to ...
0
votes
1answer
151 views

Mongodb: Elegant way to turn Aggregation Framework result into POCO

To make this short and understandable, http://mikaelkoskinen.net/mongodb-aggregation-framework-examples-in-c/ shows somewhat of what I am trying to accomplish. This "ToDynamic" call breaks on a ...
0
votes
1answer
208 views

MongoDb c# Linq query and return a collection's child objects

Say I have a typical customers and orders scenario. I have a collection of customers and each customer document has a list of orders. Now I want to query the customers where the order date is within ...
0
votes
1answer
89 views

The optimal way to load referenced entities from other collections from C# and MongoDb

In my Mongo database I have two collections, let's they are A and B. Entities of type A has, for example, a list of ids of entities of type B. This list is just a list of strings, where each string is ...
0
votes
1answer
87 views

Get MongoDB server time from the C# driver

how do I get MongoDB current server time from the C# driver? In case I have multiple shards and replica set, does monogo allow their time to be out synch? As for case 2, if the several servers time ...
1
vote
2answers
218 views

MongoDB: Build query in C# driver

I stacked to build this Mongodb query in C# driver: { Location: { "$within": { "$center": [ [1, 1], 5 ] } }, Properties: { $all: [ { $elemMatch: { Type: 1, Value: "a" } ...
3
votes
2answers
42 views

Is there any way to sort Mongo results by nested collections?

We're storing millions of Subscriber records within our Mongo setup. I've been tasked with putting a front end on the records, allowing them to be searched. My search query looks great, but the I need ...
0
votes
1answer
172 views

MongoDB C# Driver tailable cursor on oplog.rs

I am trying to write an oplog watcher using the MongoDB C# Driver that resembles the one implemented in Java Here. So far i've managed to write: public static void Read() { const string ...
0
votes
1answer
154 views

How to access nested array properties with strongly typed query builders in mongodb

Trying to figure out how to access nested array properties when using the strongly typed query builders for mongodb in c#. Lets say I have the following classes: public class V { public Guid _id ...
0
votes
2answers
116 views

Inserting .NET object into MongoDB

We have a large application with hundreds of classes/enums, and we want to use MongoDB to store some of these. The situation is that there is a current system whereby we binary serialize the .NET ...
0
votes
1answer
345 views

How to use MongoDB's Query and QueryBuilder in c# foreach loop?

I am trying to query my collections but I'm not sure how to do an "append" of sorts to Query.And() Here is my domain model to create the Item document: public class Item { public ObjectId Id { ...
0
votes
1answer
250 views

Using MongoDB with ASP.NET Web API

I am trying to implement mongodb in MVC Web Api following the steps as in Using MongoDB with ASP.NET Web API I am stuck at "Implementing the Repository" where do i put the 2 block of codes under the ...
0
votes
1answer
66 views

Filtering set of images from MongoDB

I have written some codes to store image files in MongoDB. Now I want to filter and retrieve some images from the mongoDB. I want to filter out some images which has some set of characters on the ...
1
vote
1answer
87 views

How create 2 identify fields in Mongodb-Ccsharp

I would like to create 2 identify fields using C# mongo driver. The first id field is default mongo id and the second it unique integer id for each record/document. public class Book { [BsonId] ...
1
vote
1answer
147 views

MongoDB C# Driver Find Object which contains an Obj in an Array with a certain value that meets certain criteria

I've got a mongo object that follows this pattern. Actions is an array of objects. I've excluded the irrelevant fields. { "_id" : 141, ... "Actions" : [{ ... "Modified" : new ...
0
votes
1answer
75 views

Mongodb query for subchild

I have monogodb data struture as below: { "_id" : ObjectId("512c4c468c08631ff0dbb02c"), "ReferenceNumber" : "MongoDb", "Title" : "Shashi", "CreatedUserId" : ...
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
2answers
158 views

Mongo DB C# Driver - Getting Translated BSON from C# code

Say I have the following cursor set up using the C# Driver: var cursor = _mongoClient.GetServer() .GetDatabase("test") ...
0
votes
1answer
29 views

How to get a number of documents starting by a certain document in mongodb

Let's say, in mongo db, I have a collection like this: {_id: "A", Value: "1"} {_id: "B", Value: "2"} {_id: "C", Value: "3"} {_id: "D", Value: "4"} {_id: "E", Value: "5"} {_id: "F", Value: "6"} {_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
1answer
126 views

How do you use BsonClassMap to map a POCO domain object property as a manual or DBRef reference?

Using BsonClassMap, is it possible to map a domain object reference while keeping the domain object assembly persistent ignorant (changing the public A Reference { get; set; } property to public ...
0
votes
1answer
53 views

How store objects in MongoDb without assembly fully qualified name

I store item that contains fields like Dictionary In mongo this field has _t = System.Collections.Generic.Dictionary`2[System.String,[Namespace.MyType, Namespace, Version=1.0.0.0, Culture=neutral, ...
0
votes
1answer
72 views

How to implement this in MongoDB?

I migrated my SQL Server DataBase to MongoDB.Now I have a problerm. select * from AgentStatus a, (select Max(TimeStamp) as TimeStamp,ExtNo from AgentStatus group by Extno) b where a.[TimeStamp] = ...
0
votes
1answer
84 views

MongoDB Aggregation using official C# driver?

I'm using the official C# driver.Have no idea to implement this: Select MAX(TimeStamp) as MaxTimeStamp, ExtNo From AgentStatus Where TimeStamp>=@begin and TimeStamp <=@end Group By ExtNo Any ...
1
vote
2answers
35 views

Usage od UnmapProperty, UnmapMember, UnmapField

The usage of these statements is not clear for me. I give the following example if (!BsonClassMap.IsClassMapRegistered(typeof(Province))) { ...
0
votes
2answers
187 views

MongoDB best practice for referencing

I'm wondering what the best practice for modelling by using references would be given situation under. I'm using MongoRepository library. public class User : Entity { publis string Id { get; set; ...
0
votes
2answers
489 views

Mongo Vs Raven Evaluation [closed]

I was in the process of evaluating nosql databases and finalised on two. RavenDB and MongoDb. Which one is better and why? Which will help in writing more performance oriented queries.
1
vote
1answer
271 views

MongoDB: update only specific fields

I am trying to update a row in a (typed) MongoDB collection with the C# driver. When handling data of that particular collection of type MongoCollection<User>, I tend to avoid retrieving ...
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 ...
2
votes
2answers
223 views

Embedded MongoDB Document not getting an ID on save with C# Driver

When I have a root document that has a list of documents and I save/insert, the root document always gets an ID from MongoDB, but the documents in the list don't, they remain the same as ...
0
votes
2answers
61 views

Split MongoDB data into several files

I've been reading about split Mongo databases and escalate through shards, but I'm thinking if possible to split a mongo database in the same server by chunks and store that in different files, the ...
1
vote
2answers
197 views

Error in MongoDB when using C# driver to deserialize a nested class

Usually when I store an object into my collection and add a new property to my object, the mongodb C# driver will use a default value when the property isn't found in MongoDB. However, when I have a ...
0
votes
2answers
88 views

Mongo admin database credentials don't work in other databases on server

The documentation for Mongo states that when authentication is enabled, and for users added to the admin database, these users should be able to access the other databases in Mongo, with the rights ...

1 2 3 4 5 13