0
votes
1answer
105 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 ...
1
vote
2answers
160 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" } ...
1
vote
2answers
150 views

MongoDB embedded document delete

I have been doing experiments on MongoDB. Collection are as follows(sample). Project this, in this class of 95th DeleteAlbum line have the function of. { "_id": { "$oid": ...
1
vote
2answers
282 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
114 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
1answer
302 views

Incremental MapReduce in c#.net

I have data of following format.. Type C_ID Assitor CollectionDate granulity counter A a 10 08-08-2012 00:00 15 0.9912378 B a 5 08-08-2012 00:00 15 0.1860929 C b ...
1
vote
0answers
57 views

How to see query that is constructed by linq in MongoDB? [duplicate]

Possible Duplicate: Translate Queryable<T> back to IMongoQuery I want to see queries that is constructed by linq in MongoDB. I have been checked documentations about profiling but i ...
0
votes
1answer
143 views

Mapping subclasses / embedded to single flat document with MongoDB C# driver

I'm developing an app that has a model using race results / times etc.. I've got a model that looks something like: public class Competitor { public int ID { get; set; } public string Name { ...
1
vote
2answers
251 views

MongoDb passing predicate argument

in MongoDb I can pass a predicate to an queryable instance for example this.DataBase.GetCollection<BsonDocument>("entity") .AsQueryable<Entity>() .Where(item=>item.id ==5); But now I ...
0
votes
2answers
652 views

Mongodb, linq driver. How to construct Contains with variable or statements

I'm using the Mongo LINQ Driver for C#, works great. Sorting a lot of properties but heres a problem I can't solve, its probably simple. var identifierList = new []{"10", "20", "30"}; var newList = ...
0
votes
1answer
880 views

With the mongoDB C# driver, how do I issue a runCommand?

The mongoDB API documentation seems to be lacking in this area. I am trying to use the aggregate function to get a count of popular tags in a certain collection. Here is the command I wish to ...
0
votes
1answer
132 views

Is “Fields.Include” required when defining custom fields in a select?

I am using the official MongoDB C# driver So I have this code MongoCollection<MyClass> collection = ...; var cursor = collection.FindAll(); cursor.Fields = ...
0
votes
1answer
99 views

Are there any stable mongoDB drivers available for .NET 2.0?

I have been taking a look around and the most popular .NET drivers for mongo DB all mention their LINQ capabilities. However, I have a legacy application written for .NET 2 that I need to integrate ...
2
votes
4answers
446 views

Comparing two List<MyClass>: How to find out difference?

I used to compare lists like this, but it returns false in a test: Assert.IsTrue(expected.SequenceEquals(actual)); And tried converting to json and it worked: Assert.AreEqual(expected.ToJson(), ...
1
vote
1answer
568 views

MongoDB increment query does not work as expected

I am trying to increase post's comment vote in atomic operation so I am trying to upvote post's comment if current username is not exist in DownVoters and UpVoters list of comment.But below query ...
3
votes
1answer
234 views

Saving a document in MongoDB without clobbering previous partial updates to a sub document

Suppose I have a model like this: public class Item { public Guid Id { get;set;} public string Title { get;set;} public List<Comment> Comments { get;set;} } When saved to Mongo ...
0
votes
1answer
141 views

MongoDb C# Driver support Cyclic references?

I was looking at porting a small side project over to use Mongo, as it was getting more and more time consuming using Nhibernate for the current scenario. I gave NoRM a try originally, and that had a ...
5
votes
2answers
536 views

Using MongoDB shell commands on MongoDB 10Gen's driver

I want to simply execute pure MongoDB queries via MongoDb 10Gen's .net(c#) driver. For example . I want to use below command on driver db.people.update( { name:"Joe" }, { $inc: { n : 1 } } ); I ...
2
votes
2answers
224 views

How to fetch data from two collections in one query in mongo db?

Let's say I have two collections A and B. In my C# program I'm trying to get data from them. Currently I get data from collection A first and save the documents into a container. And then get data ...
5
votes
4answers
3k views

Mongo C# Driver: Deserialize BsonValue

I have a document in mongodb that is structured similar to this: { "_id": "abcdef01234", "Name": "Product A", "Dimensions": [ { "Height": 32, "Width": 64 }, { ...
0
votes
1answer
148 views

How to update multiple changes to doc with embedded docs in MongoDB using official C# driver

I want to update various fields on various levels deep within the document and apply all the changes with one call. Ideally, the driver would traverse the object model with the models.Save(model) and ...
2
votes
1answer
446 views

Updating an embedded doc (2 levels deep) in MongoDB using the official C# driver

I'm having problems updating an embedded document that is 2 levels deep in a document. I've read this post Updating an embedded document in MongoDB with official C# driver, but that problem only ...
2
votes
1answer
1k views

How to push a List<> to a subdocument in mongodb?

I am trying to push a List to the subdocument of a document. If I insert just a single object as BsonDocument it works as shown below: BsonDocument subdoc = new BsonDocument { { ...
31
votes
2answers
9k views

MongoDB GridFs with C#, how to store files such as images?

I'm developing a web app with mongodb as my back-end. I'd like to have users upload pictures to their profiles like a linked-in profile pic. I'm using an aspx page with MVC2 and I read that GridFs ...
4
votes
1answer
2k views

Updating an embedded document in MongoDB with official C# driver

If I have a Company collection which contains embedded Divisions: { "_id": 1 "_t": "Company", "Name": "Test Company" "Divisions": [ { "_id": 1 "_t": "Division", ...
2
votes
4answers
1k views

MongoDb and self referencing objects

I am just starting to learn about mongo db and was wondering if I am doing something wrong....I have two objects: public class Part { public Guid Id; public ILIst<Materials> Materials; ...