0
votes
1answer
197 views

How to Clone/Copy a POCO Entity for MongoDB with BsonSerializer in the C# Driver

What's the best way to make a new copy of a MongoDB POCO entity using the official C# driver? I've tried this; public T Clone() { var bsonWriter = new BsonDocumentWriter(new ...
0
votes
1answer
386 views

Serialize an object graph with MongoDB and C#

I have a Winforms Control from a 3rd party developer and want to store its data directly in a MongoDB. It is a gantt chart which has a list of Resources and a list of Appointments. The Appointments ...
0
votes
1answer
126 views

Representation = BsonType.Int64 does not work properly with Datetime

I am decorating one of my DateTime property in my class with Representation = BsonType.Int64 attribute so that it gets stored in the database with Int64 representation of a date. When I used to store ...
2
votes
2answers
452 views

BSON serialization in C# driver for MongoDB

I just started playing with MongoDB and official c# driver for it. And I have a small question regarding objects serialization. For example we have a classes: public class User { public string ...
0
votes
1answer
197 views

MongoDB, json class & dictionary member serializing

Let's say I've got such a class: class A { Dictionary<string, string> Dict1 { get; set } } And I want it to be serialized to Json like that: "A" : {"strKey1" : "strVal1", "strKey2" : ...
0
votes
1answer
543 views

MongoDB Query C# Driver

Hi I am having trouble with expressing this query in c# mongodb, i want it to return all the results of an objectID where it does not equal "000000000000000000000000" which works in mongovue but i ...
2
votes
2answers
797 views

Storing composite/nested object graph

I am currently developing a document store in Mongo DB which contains a complete material breakdown of a specific item. The breakdown is calculated and contains a composite structure. The domain ...
1
vote
3answers
2k views

Serializing object graph using MongoDB Bson serializer

I've been playing a little with the MongoDB Bson serializer, using the following piece of code: class Program { public class myValue { public int Id = 0; public string Label ...