The MongoDB C# Driver is the 10gen-supported C# / .NET driver for MongoDB.
0
votes
3answers
48 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
0answers
4 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 ...
1
vote
1answer
53 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.
...
1
vote
2answers
100 views
MongoDB request by array of _ids (is it possible?)
For example I have n documents:
{ _id : 1 }
{ _id : 2 }
{ _id : 3 }
...
{ _id : n }
By some logic I got array of m _ids: [1, 30, 500, 1001, ..., i ];
Is it possible to make ONE request using array ...
2
votes
2answers
298 views
Mongodb ObjectId generator as SQL Server proc
I have a hybrid application where part of data (mostly legacy) is stored in SQL Server and another part in Mongodb. I just converted all primary key types in SQL Server to use ObjectId which I ...
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, ...
2
votes
2answers
47 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
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, ...
0
votes
1answer
35 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 ...
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 ...
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 ...
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
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 ...
1
vote
1answer
51 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
0answers
27 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
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
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
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
69 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
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
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
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
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 ...
2
votes
3answers
581 views
How do I mock MongoDB objects to test my data models?
I'm using the following logic (MOQ) to attempt to mock out the MongoDB csharp driver objects:
var svr = new Mock<MongoServer>(new MongoServerSettings());
var db = new ...
21
votes
6answers
5k views
What is the most mature MongoDB driver for C#?
So, there are
mongodb-csharp
simple-mongodb
NoRM
as C# drivers for MongoDB available.
Which one of them is the most mature and stable one?
Why would you choose one over the other two?
Are they ...
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
2answers
168 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
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
12 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
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
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
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; ...
2
votes
3answers
454 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 ...
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
2answers
2k views
How do you add a list of bsondocuments as an element of a bsondocument
How do I create the following document using the official c# driver?
{
"name": "John Doe",
"classess": [
{
"classname": "Class1"
}
{
...
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
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 ...
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
3answers
154 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
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?
18
votes
2answers
3k views
Convert string into MongoDB BsonDocument
I have a long string in JSON format, and I want to convert it into a BSONDocument for insertion into a MongoDB database. How do I do the conversion? I'm using the official C# driver.



