Tagged Questions
0
votes
1answer
15 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
1answer
23 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
28 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
0answers
18 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
37 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
16 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
27 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
46 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
41 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
33 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
31 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
27 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
24 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
45 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
44 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
37 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
57 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
1answer
44 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
18 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
47 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
32 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
25 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
57 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
51 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
73 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
145 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
33 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
32 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
47 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
53 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
46 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
48 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
56 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
53 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
184 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
104 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
149 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
81 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
74 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
158 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
39 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
127 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
107 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
203 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
62 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
76 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
101 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
71 views
Mongodb query for subchild
I have monogodb data struture as below:
{
"_id" : ObjectId("512c4c468c08631ff0dbb02c"),
"ReferenceNumber" : "MongoDb",
"Title" : "Shashi",
"CreatedUserId" : ...

