user325558
user325558

Reputation: 1433

MongoDB C# : use official driver and Norm or wait for linq implementation, sugestions?

I searching to migrate my cms from SQL to NoSQL MongoDB using C#. I have created the first classes migration but i'm not happy with future evolutivity and stability using currents C# drivers. I have stated with Samus, moved to Norm and now mixed with Official mongodb driver. Can someone sugest what preserve in Norm driver and what use with official driver and when we can imagine to get a complete driver to stabilize the developments. thanks.

Upvotes: 1

Views: 1351

Answers (1)

javierlinked
javierlinked

Reputation: 563

Consider using 10gen (official) driver for MongoDB, since it has been heavily refactored, tested and is currently maintained.

Norm driver is being phased out in favour of official driver Updating numerical types using NoRM and other tools changes numerical type metadata on MongoDb

On the top of 10gen driver you can add if really need FluentMongo.

Upvotes: 2

Related Questions