vote up 3 vote down star
1

If you were to motivate the "pro's" 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

flag
you should make it a wiki if you want a poll – frankodwyer Jan 15 at 22:14
+1 for making it a wiki if you want a poll – cletus Jan 15 at 22:16
What about the con's? – bmatthews68 Jan 15 at 22:24
1  
There are no con's. – ocdecio Jan 15 at 22:37

14 Answers

vote up 11 vote down check

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

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag
vote up 0 vote down

This blog post by Glenn Block should help.

Happy Coding !

link|flag
vote up 2 vote down

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|flag
vote up 0 vote down

.net tiers using code smith templates

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

Why code something that can be generated just as well.

link|flag
vote up 6 vote down

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|flag
vote up 2 vote down

So that your object model and persistence model match.

link|flag
Maybe so that your persistence is transparent to your object model – S.Lott Jan 15 at 22:31
vote up 11 vote down

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

link|flag
vote up 1 vote down

To minimise duplication of simple SQL queries.

link|flag
vote up -4 vote down

no extra sql code.

Great brand new apps

link|flag

Your Answer

Get an OpenID
or

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