The MongoDB C# Driver is the 10gen-supported C# / .NET driver for MongoDB.
0
votes
0answers
666 views
Multiple actions were found that match the request Error WEB API MongoDB c#
Im fairly new to ASP.NET MCV 4 as well as Mongo DB and trying to build web API.
I thought I had finally got it right but when I start the app and enter: http://localhost:50491/api/document into my ...
0
votes
1answer
166 views
Web API error failed to serialize the response body
Im fairly new to ASP.NET MCV 4 as well as Mongo DB and trying to build web API.
I thought I had finally got it right but when I start the app and enter: http://localhost:50491/api/document into my ...
0
votes
2answers
118 views
Mongodb Array ElemMatch with 2 conditions
I have a collection "foo":
db.foo.insert({a:[1, 10]})
db.foo.insert({a:[4, 6]})
and a query:
db.foo.find({a: {$elemMatch: {$gte: 5, $lte: 7}}})
and result is:
{a: [4, 6]}
My question is how ...
1
vote
1answer
160 views
MongoDB transaction
I have a method like below in C#:
private void Save(object)
{
mongoCollection.Save(object);
someotherRelationaldb.Save(object);
}
I have two DBs in which I have to save a object. One is ...
1
vote
1answer
151 views
How to update <byte, string> dictionary in MongoDB Document
How can I update the representation of a <byte,string> Dictionary property in a BSON Document? I don't see how to do it with the BSON types. The object was stored using the automatic BSON ...
0
votes
1answer
83 views
Create a utc date in vb.net to set in mongodb
I'm having a bit of trouble with the mongodb c# driver, in that it seems to be converting all my dates to a UTC form.
I have
Dim cDate as Date
Dim year as integer = 2012
Dim month as integer = 12
...
1
vote
1answer
132 views
MongoDB C# Driver 'Cursor not found'
I have quite an intensive operation that has a MongoCursor run in a loop for a few hours (on a vb.net app running via the c# driver. I'm not too sure what causes it but I run into an exception after a ...
2
votes
1answer
208 views
Mongodb auth with servicestack throws missing method exception
I've just configured ServiceStack to use Mongodb for authentication like this locally
public override void Configure(Container container)
{
Plugins.Add(new AuthFeature(()=> new ...
0
votes
1answer
75 views
MongoDB CSUUID Fields
A bit of a strange scenario, but I basically have a strongly typed model, lets call it Person. This model is saved into MongoDB using the C# driver. Then another application pulls out the raw BSON ...
0
votes
1answer
74 views
MongoDB c# driver _id field and SetIdMember()
I have set the SetIdMember() for a class map to point to an element within the object:
BsonClassMap.RegisterClassMap<Person>(x =>
{
x.AutoMap();
...
0
votes
0answers
98 views
How can I connect MongoDB.Bson.dll and MongoDB.Driver.dll to Windows Phone project?
I use MongoDb in my Windows Phone project, and I want to connect MongoDB.Bson.dll and MongoDB.Driver.dll. But I have error "Can not add a link because the project was not built with runtime Windows ...
2
votes
1answer
464 views
Mongodb c# driver FindAll with setFields and AsQueryable
Using MongoDB C# driver, seems that I'm unable to get the data by AsQueryable with setFields and Where condition only by mongo query. I fetched documents by this code
var query = ...
0
votes
1answer
105 views
Using SqlBulkCopy with MongoDB
From a previous question, I'm trying to do a SqlBulkCopy from a MongoDB database, and I'm getting an error and can't find what column type I should have:
The given value of type ObjectId from the ...
0
votes
1answer
221 views
C# MongoDb querying and using underlying JSON
Hopefully this is a simple one, but not sure if it will be as information online seems to indicate that you are unable to query without using a strongly typed model.
To give some background to the ...
0
votes
1answer
137 views
Profiling the MongoDB database to see the executed queries
Is there a way to see the executed queries on MongoDB? I enabled profiling through the mongo.exe on windows with the following command:
db.setProfilingLevel(2);
This enables profiling and I can ...
0
votes
1answer
135 views
How to rollback MongoDB request after the RequestStart() method?
Using MongoDB C# Driver (official form 10gen), I'm doing the following code:
using (database.RequestStart()) {
collection.Save(object);
}
I would want to know how to stop the request ...
0
votes
1answer
80 views
Query MongoDB with object as parameter, not just a particular field equality or whatever
Is it possible to query MongoDB, but using a C# object (which may be partially populated) as the query parameter?
I.e. find all foo in collection where they are partially or more equal to my ...
0
votes
2answers
267 views
Strange behavior of MongoDB LINQ provider for fields called “id”
Here's a JSON document where Mongo LINQ provider fails:
{"results":
{"text":"@twitterapi http://tinyurl.com/ctrefg",
"to_user_id":396524,
"to_user":"TwitterAPI",
...
0
votes
2answers
244 views
How can I tell the MongoDB C# driver to store all Guids in string format?
I'm currently applying the [BsonRepresentation(BsonType.String)] attribute to all Guid properties in my domain models to have those properties serialized in string format. Besides being tiresome to ...
0
votes
1answer
89 views
Show Mongodb query projection in the Log
(updated)
I want to see the field restriction (projection) used in a query in the log, not just the query itself, so I can see exactly what's being requested. I've set 'vvvv=true' along with ...
1
vote
1answer
86 views
Handling MongoDB schema changes
How do you deal with schema changes in production?
Let's say i'm tampering with some classes in my C# project, adding a complicated property which consists of a Dictionary (Key(UInt16),Value(UInt16)) ...
0
votes
3answers
131 views
Float inaccurate rounding in Mongodb with CS driver
When I save the float number into MongoDB using csharp driver it is not saved accurately. If my number is 1504.57 I expect the database will have the same number but for some reason it become ...
0
votes
0answers
227 views
Mapping Complex Objects with MongoDB
Given an arbitrarily complex hierarchy of objects, e.g.
class ComplexObject
{
public ICollection<A> Components { get; set; }
...
}
class A
{
public ICollection<int> Values{ ...
1
vote
2answers
300 views
Query values in a Dictionary<ObjectId, Class> using LINQ?
Consider the following simple example of Students and Teachers;
// person
public class Person
{
public ObjectId Id { get; set; }
public string Name { get; set; }
public Person() {
...
0
votes
2answers
312 views
Custom Mongo ObjectId for inserts
Some Background:
I'm using MongoDB in tandem with ElasticSearch via the mongo-elasticsearch river. In Elasticsearch I want the structure of my documents to look like this:
{
"_id": ...
0
votes
2answers
44 views
Update one property's value to the value of another property in the same document
How can we replicate the following sql query in MongoDb?
update Person set Alias = Name;
where the Person table has the columns Alias, Name
I want the query to affect multiple rows. It doesn't ...
0
votes
1answer
479 views
How to construct an MongoDB Linq Any() query by comparing a sub-field
I'm trying to construct the following nested query such that it will run on my entities in C# but be properly translated through the C# Driver to a MongoDB Query;
lpn = new List<PN> { new ...
4
votes
1answer
492 views
Save Dictionary with nested array in MongoDB
The following class shall be received by an API as Json and stored in MongoDB, using the C# Driver and Web API. The data property is unstructured, but I can restrict it to key-value pairs with ...
0
votes
1answer
753 views
How to query/update sub document in MongoDB using C# driver
public class DayData
{
public string _id
{get;set;}
public string Data
{get;set;}
public HourData HR1
{get;set;}
public HourData HR2
{get;set;}
...
public ...
2
votes
1answer
212 views
C# mongoDB - insert not creating Id?
I have created a simple object with getters and setters:
public class MemberCanonical : IMemberCanonical
{
public ObjectId Id { get; set; }
public String username { get; set; }
...
1
vote
1answer
479 views
Is there an “Explain Query” for MongoDB Linq?
Is there a way to run .explain() or equivalent on Linq queries? I would want to know
The text of the actual JSON query
The output of .explain() (indexes used, etc)
It would also be nice to have the ...
2
votes
0answers
154 views
MongoDB and Multiple C# Client Threads
I have a single primary instance of a MongoDB to connect to. I am using the C# driver (latest revision) to connect and utilise MongoDB.
My client application is multi-threaded whereby processes will ...
1
vote
1answer
199 views
Mongodb - how to deserialze when a property has an Interface return type
I'm attempting to avoid introducing any dependencies between my Data layer and client code that makes use of this layer, but am running into some problems when attempting to do this with Mongo (using ...
0
votes
1answer
95 views
How can I store an array of ancestor ids as a List<string> in C# for MongoDB?
I have a POCO C# class that has a list of ancestor ids. I want to store this list as List<string> so that my domain project doesn't need a dependency on the mongodb c# driver. This worked fine ...
1
vote
1answer
107 views
InvalidCastException: ConstantExpression to LambdaExpression in MongoDB Driver
How can I wrap this into a reusable expression that I can use elsewhere in my code?
nv => nv.a == nv2.a
I've tried doing this, but seems to return a ConstantExpression rather than a ...
1
vote
1answer
30 views
Is there any way to do remove without the query builder
is there any way to do remove without the query builder?
var query = Query.EQ("_id", id);
collection.Remove(query);
I updated my solution to 1.6 to use Linq query but I found I still need to use ...
3
votes
1answer
507 views
Convert linq Expression<> to IMongoQuery with c# Driver
Given a;
Expression<Func<T, bool>> criteria;
Is it possible to convert that to an IMongoQuery with the driver?
It looks like it might be amongst the QueryBuilder somewhere, but I ...
0
votes
1answer
133 views
How to Correctly Build a MongoDB Nested property Name using C# Driver
I must be missing something blindingly obvious. Somebody please shame me;
I'm building 2.2 Aggregation queries, which aren't natively supported by the C# Linq Driver, so I'm having to build up ...
0
votes
2answers
106 views
Insert documents into MongoDB only if all fields are unique
I have the following class structure:
public class DBTestItem
{
public int p0;
public int p1;
public int p2;
public int p3;
public int p4;
public int p5;
public int p6;
...
0
votes
3answers
163 views
c# List adding items using For loop
I have a problem with c# List, not sure where I'm missing the point while adding a new object to the Managepagesid List!
public class Clients
{
[BsonId]
public string Id { get; ...
0
votes
1answer
299 views
C# driver for MongoDb: how to use limit+count?
From MongoDb documentation: "On a query using skip() and limit(), count ignores these parameters by default. Use count(true) to have it consider the skip and limit values in the calculation." That's ...
1
vote
2answers
141 views
Serializing a composite id into binary
I have the following test class that represents a composite _id:
private sealed class Id
{
public int p0 { get; set; }
public int p1 { get; set; }
public int p2 { get; set; }
public ...
0
votes
1answer
127 views
Composite _ID and using MongoDB as a composite bucket store, via C#
I am building an eCommerce system that uses composite bucket hashing to efficiently group similar items. Without going into why I chose this system, suffice it to say it solves several key problems ...
1
vote
1answer
190 views
Return unstructured BsonDocument as class-property in ApiController
Similar to this question, I have a class with several different property types, including BsonDocument.
public class Report
{
[BsonId, JsonIgnore]
public ObjectId _id { get; set; }
...
0
votes
1answer
113 views
Limit mongodb collection to 1 row
I'm using mongodb with c# driver, and I would like to limit my MongoCollection to maximum 1 row. How do I do that ?
2
votes
2answers
213 views
Modelling mongodb subcollections in c#
I'm trying to model subcollections through C# driver, but I'm finding it difficult to do so; could you some help me to do it or some full fledged example for the same please?
I'm trying to acheive ...
1
vote
2answers
679 views
Serialize class with BsonDocument via JSON.NET or XML Serializer
I want to return the following sample class by an ApiController, which is probably just JSON.NET serialized, but I want to avoid just converting the whole class to a json-string.
public class Report
...
0
votes
1answer
128 views
Mongo DB C# code using 2 level , 3 level and 4 level of array
I have to update in C# code using MongoDB. Here I had implement 2nd level array of update in below (subBranchindex is taken in a generic list object):-
for (var index = 0; index < ...
0
votes
2answers
115 views
How do I resolve a year/month/day date to a more specific date with time data in MongoDB?
I'm working on converting my blog over to use /year/month/day type URLs. I've ran into a pretty bad problem with the concept though. I want to only have down to hour/minute resolution, but of course ...
0
votes
2answers
132 views
MongoDB collections as FIFO stack
I need to implement the FIFO logic with MongoDB collection:
Pop the first document from MongoDB collection.
Push the document to MongoDB collection and place it as a last document.
The documents ...



