Nippysaurus
Nippysaurus

Reputation: 20378

Is there a nice MongoDB framework for C#?

I have been using Mongoid for a Ruby project which makes dealing with MongoDB a piece of cake.

I am now using MongoDB with a .NET (C#) project and am finding the Mongo drivers to be fairly lacking in comparison to Mongoid. Is there something I can use which can at least take care of basic data relationships for me? (like two-way ID references)?

Upvotes: 4

Views: 1080

Answers (1)

Sunil Raj
Sunil Raj

Reputation: 460

The best one I could find and I have used in my projects is the official driver from the MongoDb from 10gen: http://www.10gen.com/

Example Project

C# driver

C# driver with Linq tutorial

Upvotes: 2

Related Questions