Is there a Rob Conery Massive equivalent for NoSQL (MongoDB)?

Is there a Rob Conery Massive equivalent for NoSQL (MongoDB)?

I like Massive , but I would like to use it with NoSQL databases, especially with MongoDB, and I can not find a decent alternative.

+4
source share
3 answers

If you are interested in the "single file" aspects, then it should not be too difficult to create something using the Bson serializer / deserializer code provided in the MongoDB driver to store Bson documents on the file system.

If you are interested in query aspects, SQL is not the right language for querying a document repository such as MongoDB.

And finally, if you are interested in the dynamic aspects of this, the closest thing I have found so far is my own blog post about using dynamic objects with MongoDB .

+3
source

Simple.Data has an adapter for MongoDB - https://github.com/markrendle/Simple.Data

+2
source

Maybe I don't understand this (but I'm not a NoSQL guru by any means):

The Massive point is a mapping of a relational database table to an object.
The point of NoSQL is that there are no relational database tables, but instead you store your objects directly in the database.

So ... what Massive feature do you want to use with NoSQL DB?
Do you really need the mass equivalent for NoSQL?

0
source

All Articles