Filed under Simple-MongoDB

Simple-MongoDB – Alpha version is out

Ok, it’s finally out. My driver agains MongoDB can be downloaded from: http://code.google.com/p/simple-mongodb/ I will try to write more about how to use it, in the next couple of days, but for now I will just double post the info that’s posted on the Google code site. A C# implementation of a driver that can … Continue reading »

Simple-MongoDB, Open source C#-driver

Hi! As I posted about earlier today, I have started building my own driver against MongoDB, using C#. I’m striving against keeping it Json-centric. What I mean by this is that I rely on Json for serializing objects, so that you can use both static C# types as well as anonymous types or key-values. The … Continue reading »

C# driver for MongoDB

I have started to build my own driver against MongoDb, where I’m using Newtonsofts-Json-library for dealing with JSON and BSON serialization. It will be open source. The first draft of how you can insert documents looks like this: The MongoDocument that is being extended in Person has no komplexity at all. It just provides the … Continue reading »