Reputation: 20378
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
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/
Upvotes: 2