up vote 21 down vote favorite
9
share [g+] share [fb]

If you were to motivate the "pros" of why you would use an ORM to management/client, what would the reasons be?

Try and keep one reason per answer so that we can see what gets voted up as the best reasons

link|improve this question
you should make it a wiki if you want a poll – frankodwyer Jan 15 '09 at 22:14
+1 for making it a wiki if you want a poll – cletus Jan 15 '09 at 22:16
2  
What about the con's? – bmatthews68 Jan 15 '09 at 22:24
2  
There are no con's. – a'b'c'd'e'f'g'h' Jan 15 '09 at 22:37
And no spoon, either. No, really, there is a con: performance. It's much easier to optimize DB queries when you don't have to go through the ORM. (I'm not complaining - having recently switched to ORM, I'm mostly happy with it; for general purpose, ORM is the way to go; but keep some way to run queries closer to the metal iff you need the performance) – Piskvor Jul 2 '10 at 16:21
feedback

15 Answers

up vote 22 down vote accepted

Making data access more abstract and portable. ORM implementation classes know how to write vendor-specific SQL, so you don't have to.

link|improve this answer
11  
While I agree that this is a feature of ORM's, I'd propose that the use-case is fairly limited. I have never really used anything but MySql and sqlite for about a decade. I think it's probably a very rare requirement for most developers. – troelskn Dec 29 '09 at 12:44
8  
@troelskn: I agree, I have used many RDBMS products, but never more than one or two per project. So portability isn't the most practical value of abstracting SQL. I think many ORM users simply want to avoid coding in SQL at all. – Bill Karwin Dec 29 '09 at 19:00
vendors come out with new versions/features all the time...just need some cool people to write the dialect and easy upgrade it is! – dotjoe Mar 12 '10 at 1:38
Typical useless answer I wonder why it is marked as good answer seems like the guy who asks the question just try to justify to his boss that he should use an ORM :) My question would rather be what kind of problem you'll encounter with Hibernate stackoverflow.com/questions/6477170/… – user310291 Jun 25 '11 at 10:24
@user310291: The OP did not ask for problems or pitfalls, he asked for benefits of using an ORM. Of course there are pros and cons, but he asked for the pros. Frankly, I'm surprised that this answer got accepted and got as many upvotes as it did, because I wouldn't count it as the chief benefit of an ORM. – Bill Karwin Jun 25 '11 at 17:08
feedback

Speeding development. For example, eliminating repetitive code like mapping query result fields to object members and vice-versa.

link|improve this answer
feedback

The most important reason to use an ORM is so that you can have a rich, object oriented business model and still be able to store it and write effective queries quickly against a relational database. From my viewpoint, I don't see any real advantages that a good ORM gives you when compared with other generated DAL's other than the advanced types of queries you can write.

One type of query I am thinking of is a polymorphic query. A simple ORM query might select all shapes in your database. You get a collection of shapes back. But each instance is a square, circle or rectangle according to its discriminator.

Another type of query would be one that eagerly fetches an object and one or more related objects or collections in a single database call. e.g. Each shape object is returned with its vertex and side collections populated.

I'm sorry to disagree with so many others here, but I don't think that code generation is a good enough reason by itself to go with an ORM. You can write or find many good DAL templates for code generators that do not have the conceptual or performance overhead that ORM's do.

Or, if you think that you don't need to know how to write good SQL to use an ORM, again, I disagree. It might be true that from the perspective of writing single queries, relying on an ORM is easier. But, with ORM's it is far too easy to create poor performing routines when developers don't understand how their queries work with the ORM and the SQL they translate into.

Having a data layer that works against multiple databases can be a benefit. It's not one that I have had to rely on that often though.

In the end, I have to reiterate that in my experience, if you are not using the more advanced query features of your ORM, there are other options that solve the remaining problems with less learning and fewer CPU cycles.

Oh yeah, some developers do find working with ORM's to be fun so ORM's are also good from the keep-your-developers-happy perspective. =)

link|improve this answer
feedback

Supporting OO encapsulation of business rules in your data access layer. You can write (and debug) business rules in your application language of preference, instead of clunky trigger and stored procedure languages.

link|improve this answer
feedback

So that your object model and persistence model match.

link|improve this answer
Maybe so that your persistence is transparent to your object model – S.Lott Jan 15 '09 at 22:31
feedback

Generating boilerplate code for basic CRUD operations. Some ORM frameworks can inspect database metadata directly, read metadata mapping files, or use declarative class properties.

link|improve this answer
feedback

The reason I'm looking into it is to avoid the generated code from VS2005's DAL tools (schema mapping, TableAdapters).

The DAL/BLL i created over a year ago was working fine (for what I had built it for) until someone else started using it to take advantage of some of the generated functions (which I had no idea were there)

It looks like it will provide a much more intuitive and cleaner solution than the DAL/BLL solution from http://wwww.asp.net

I was thinking about created my own SQL Command C# DAL code generator, but the ORM looks like a more elegant solution

link|improve this answer
feedback

To minimise duplication of simple SQL queries.

link|improve this answer
feedback

You can move to different database software easily because you are developing to an abstraction.

link|improve this answer
2  
In 30 plus years of doing datbase work, I have not once had to do this. – HLGEM Feb 1 '10 at 19:16
1  
Doesn't mean it's not possible! :) – MattF Feb 15 '10 at 10:18
@HLGEM it means you're closing the choices for the client. It could actually happen, in only 3 years of webapps work, we've built portable software using ORMs – Alfabravo Feb 20 '10 at 17:36
feedback

Development happiness, IMO. ORM abstracts away a lot of the bare-metal stuff you have to do in SQL. It keeps your code base simple: fewer source files to manage and schema changes don't require hours of upkeep.

I'm currently using an ORM and it has sped up my development.

link|improve this answer
feedback

.net tiers using code smith templates

http://nettiers.com/default.aspx?AspxAutoDetectCookieSupport=1

Why code something that can be generated just as well.

link|improve this answer
Ugh. We used Net Tiers on a big commercial project, and I would highly advise against using it. The problem is that it is not composable. Want to query Foo and Bar objects? You can't write joins, you have to issue separate queries for each object type you want. This results in lots of calls to the database, which can break performance and atomicity. Bad, bad, bad. Stay away. – Judah Himango Apr 5 '11 at 17:23
feedback

This blog post by Glenn Block should help.

Happy Coding !

link|improve this answer
feedback

convince them how much time / money you will save when changes come in and you don't have to rewrite your SQL since the ORM tool will do that for you

link|improve this answer
feedback

Abstract the sql away 95% of the time so not everyone on the team needs to know how to write super efficient database specific queries.

link|improve this answer
feedback

I think there are a lot of good points here (portability, ease of development/maintenance, focus on OO business modeling etc), but when trying to convince your client or management, it all boils down to how much money you will save by using an ORM.

Do some estimations for typical tasks (or even larger projects that might be coming up) and you'll (hopefully!) get a few arguments for switching that are hard to ignore.

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.