with MongoDB (and I assume other NoSQL database APIs worth their salt) the ways of querying the database are much more simplistic than SQL. There is no tedious SQL queries to generate and such. For instance take this from mongodb-csharp:

using MongoDB.Driver; 
Mongo db = new Mongo(); 
db.Connect(); //Connect to localhost on the default port. 
Document query = new Document(); 
query["field1"] = 10; 
Document result = db["tests"]["reads"].FindOne(query); 
db.Disconnect();

How could an ORM even simplify that? Is an ORM or other "database abstraction device" required on top of a decent NoSQL API?

link|improve this question

80% accept rate
By the way, I kind of glossed over the parenthetical remark in my answer, but you said "other NoSQL database APIs worth their salt" - MongoDB is very different from something like bigtable or cassandra, and queries/mapping against those data stores actually tend to be much more difficult than SQL. Imagine implementing an entire data-driven app with nothing but Dictionary<,> instances. It's not that bad, but it's close. – Aaronaught Apr 22 '10 at 20:47
@Aaro well of course with a key-value database, the API is very simplistic. What I meant by worth-its-salt is that you don't have to generate your own JSON queries or similar low level things. – Earlz Apr 22 '10 at 22:03
Isn't that precisely what a mapper does? These features aren't built-in, not even in Mongo. – Aaronaught Apr 22 '10 at 22:31
@Aar.. hm... I suppose you may be correct – Earlz Apr 23 '10 at 15:25
feedback

4 Answers

up vote 11 down vote accepted

Well, yes, Object-Relational mappers are redundant with MongoDB because MongoDB isn't a relational database, it's a Document-Oriented database.

So instead of SQL, you write queries in JSON. Unless you really, really want to write raw JSON, as opposed to, say, Linq, then you're still going to want to use a mapper. And if you don't want to create coupling against MongoDB itself, then you don't want to pass actual Document objects around, you want to map them to real POCOs.

The mapping is much easier with a document-oriented DB like MongoDB, because you have nested documents instead of relations, but that doesn't mean it goes away completely. It just means you've substituted one type of "impedance mismatch" for a different, slightly-less-dramatic mismatch.

link|improve this answer
What frameworks exist to do this mapping? – Cocowalla Aug 29 '11 at 8:04
@Cocowalla: I think NoRM is the only one that's really worth the bother at the moment. That may change in a year or two. – Aaronaught Aug 29 '11 at 22:18
feedback

I think an "ORM" on MongoDb can be useful, not only for "serializing" and "deserializing" objects into the db (Norm seems to do a great job) but also for making it more easy to execute aggregation queries.

It is nice if an "ORM" can generate MapReduce jobs for grouping and detecting duplicates. Some people have written code to automatically convert an sql statement into a mapreduce job: http://rickosborne.org/blog/index.php/2010/02/19/yes-virginia-thats-automated-sql-to-mongodb-mapreduce/

link|improve this answer
feedback

All you really need is a serializer/deserializer to make this work.

Norm has done a great job of doing just that. Makes it easier to take straight poco objects and just save them to mongo with a single line of code.

They call Norm an ORM, but its really just a poco to dictionary mongo wrapper.

An orm is just extra ceremony for these operations. If your data operations are abstracted into a repository, its going to be a non-issue either way, because converting to another backing store is an object per object, basis.

link|improve this answer
2  
Who calls NoRM an ORM? I thought it was a recursive acronym for " Not an Object Relational Mapper." Or maybe it's just "Not a Relational Mapper", since the "o" is lowercase. Either way, it's definitely not an ORM! – Aaronaught Apr 22 '10 at 20:11
feedback

Take a look on Kundera : https://github.com/impetus-opensource/Kundera, ORM over mongodb, cassandra, HBase.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.