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

learn more… | top users | synonyms (1)

0
votes
0answers
10 views

How to convert mongodb array of objectids to a string using csharp driver?

I have this in my document: "ids" : [ ObjectId("518a0..ec0c8") , ObjectId("518a..bc0b8")] I want to return at comma separated string for this field to the MVC view: ...
0
votes
0answers
9 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
1answer
13 views

Run MongoDump / MongoRestore in C#

Is there an easy way to run these commands using the C# driver? The only documentation I found involves running the EXE as a process etc, which seems a bit heavy. The only related question I found ...
0
votes
2answers
35 views

How to do query on multiple nested data fields in MongoDB

So, what I'm trying to do is query all documents that have a City of 'Paris' and a State of 'France'. I need to do some kind of join, but I haven't been able to figure out how to construct it. I'm ...
0
votes
0answers
33 views

Field mapping from sql table to mongoDB collection

In my application, I want to migrate all the tables from SQL Server to Mongodb collection.. For that I use following code for table migration private void btn_Migration_Click(object sender, ...
0
votes
1answer
24 views

Is there a way to only return certain elements from an array in a mongodb document

Using the following mongodb query: db.StyleHeader.find({ "FlexContent.ExtendedContent" : { "$elemMatch" : { "Defines" : "Old Keywords" } } }, { "FlexContent.ExtendedContent.Defines" : true, ...
2
votes
2answers
48 views

Understanding MongoDb connection strings

I am working with Mongodb as a database for my asp.net mvc front end site. I have MongoDB running on 3 servers, in a replica set, a primary, secondary and an arbiter. Connecting to this is the 3 front ...
0
votes
1answer
36 views

Read and update a mongodb document by single call

I have a collection called books. When use browse a particular book, I get the book by id. But I also want to increase the view count by 1 each time I read the doc. I can use 2 commands: one to read ...
2
votes
1answer
45 views

Runtime creation of LINQ expression

Say I have this expression: int setsize = 20; Expression<Func<Foo, bool>> predicate = x => x.Seed % setsize == 1 || x.Seed % setsize == 4; ...
1
vote
0answers
28 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 ...
0
votes
2answers
41 views

setting up mongodb replica sets

I am a newbie to mongo db and looking to set up a replica set. I am confused though as how I can achieve this. I want to have a primary, secondary and arbiter of 3 different machines, each running ...
0
votes
0answers
18 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
28 views

Insert Json String MongoDB [duplicate]

I've got a class that contains a json string. ie... class SomeClass { ... some properties public string MyJson { get; set: } } I can insert this into mongo but the MyJson field is just a ...
0
votes
2answers
47 views

set up mongo db across 2 servers

I am currently setting up a Mongo database in a production environment. It will be running off of 2 servers - I want to set it up so that one server can fail over to the other when and if necessary. ...
0
votes
2answers
70 views

Truncate a collection

How do I truncate a collection in MongoDB or is there such a thing? Right now I have to delete 6 large collections all at once and I'm stopping the server, deleting the database files and then ...
0
votes
2answers
41 views

WriteConcern.Acknowledged vs new WriteConcern { Journal = true, W = 1 }

I'm a bit confiused about WriteConcern settings in mongodb c# driver. Does WriteConcern.Acknowledged means Journal= true and FSYNCED =true? If I just want to be sure it writes to primary, is ...
0
votes
3answers
53 views

How to make the time stamp difference for inserting and updating record in mongo?

I need to create a time stamp in my mongodb collection. Am using C# in front end .My code is : internal static void CreateStudent(string Id, string Name,string strUserId) { ...
0
votes
1answer
37 views

How to speed up typed builders in 10gen official MongoDB C# driver?

Profiling my application I've discovered an unpleasant fact what typed Upadte<> (and Query<>) builder evaluates lambda expressions on each request, consuming a lot of CPU. You will gain several ...
0
votes
1answer
11 views

In C# Mongodb Driver, how to do partial update with unknown fields untouched?

Here is my code snippet: var query = Query<MyData>.EQ(e => e.key, key); var entity = collection.FindOne(query); if (entity != null) { entity.Value = "abc"; ...
0
votes
1answer
31 views

Use GuidRepresentation.Standard with MongoDB

I am implementing a custom IBsonSerializer with the official MongoDB driver (C#). I am in the situation where I must serialize and deserialize a Guid. If I implement the Serialize method as follow, ...
0
votes
1answer
36 views

Find documents that contain search string in any field

I'm trying to find the best way to make MongoDb look for a specific value in all document's fields. For example if I have two documents: { field1: "value1" field2: "value2" } and { ...
0
votes
1answer
29 views

write data to capped collection is too slow

I noticed that someone has asked this question at here(slow inserts into a capped collection?),but no any best answer. the blow log is my capped collection insert operation. Tue Apr 30 13:12:19.172 ...
0
votes
1answer
13 views

ConventionProfile is obsolete useIConventionPack Instead

I just updated my Mongo-C# driver from 1.6.1 to 1.8.1 and what I realized is that they have made a lot of functionality obsolete. one of the error that I am seeing due to deprecation is following: ...
0
votes
1answer
51 views

how to fetch previous or next record on MongoDB with C#

I want to fetch the previous and next record, based on record's insert datetime. After check out the official document, I still had no idea how to do. Anyone can help me, use C# or Linq?
0
votes
0answers
9 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
1answer
46 views

How to call a collection that is a number

in my mongoDB database I have collections named as numbers. For example db.15.find() If you don't already know this returns an error. How do I go about getting documents id a collection that is ...
0
votes
2answers
39 views

How to create a new database in MongoDB using the c# driver

I have read through the mongodb documentation and cannot seem to find out how to create a new database. For example, in the documentation it says I can access the "test" database like this: ...
0
votes
0answers
17 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
59 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 ...
1
vote
1answer
55 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
21 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
49 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
1answer
34 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
26 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
64 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
61 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
74 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
155 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
37 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
38 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
49 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
56 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
47 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
50 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
59 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
57 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
208 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
114 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
169 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
84 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 ...

1 2 3 4 5 13