简体   繁体   中英

Is there an equivalent of Rob Conery's Massive for NoSQL (MongoDB)?

Is there an equivalent of Rob Conery's Massive for NoSQL (MongoDB)?

I like Massive very much, but I'd like to use it with NoSQL databases, especially with MongoDB and I can't find a decent alternative.

If you are interested in the 'single file' aspects of it then it shouldn't be too hard to create something using the Bson serializer / deserializer code provided in the MongoDB driver to store Bson documents in the file system.

If you are interested in the query aspects of it, SQL isn't the right language to query a document store like MongoDB.

And finally, if you are interested in the dynamic aspects of it, well the closest I've found to that so far is my own blog post on using dynamic objects with MongoDB .

Simple.Data有一个适用于MongoDB的适配器 - https://github.com/markrendle/Simple.Data

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

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM