Is there a good MongoDB scheme for C #?

I am using Mongoid for a Ruby project that does the thing with MongoDB piece of cake.

Now I am using MongoDB with a .NET project (C #), and I found that Mongolian drivers are pretty missing compared to Mongoid. Is there something I can use that can at least take care of the underlying data relationship for me? (e.g., two-way identification links)?

+4
source share
1 answer

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

Project example

C # driver

C # driver with Linq tutorial

+3
source

Source: https://habr.com/ru/post/1412452/


All Articles