vote up 2 vote down star
1

Duplicate:

Are there good reasons not to use an ORM?


We have all heard the reasons for using an orm. What are your reasons for NOT using an ORM?

I am an ORM believer, but as a consultant I find that ORM usage is actually very low -- which is strange to me. Many shops refuse to use them, and actively tell their employees not to use them (I guess their stored proc are all they need).

flag

closed as exact duplicate by Rex M, Ray, ChrisW, alex, cletus May 20 at 3:33

3 Answers

vote up 5 vote down check

I can't put it any better than Ted Neward has.

link|flag
On an amusing side note, it looks as if Ted had lost his article and 'restored' it by pasting the Google cache into his CMS. :) – TML May 20 at 3:11
+1 for his comments... but too damn long to read – Matthew Whited May 20 at 3:17
It seems like his arguments for not using ORM are already known to those that use them, yet he really doesn't provide much in the way of resolution to the problems he states, let alone his specious parallels to ORM and Vietnam. It would have been much more effective had he skipped the political aspects of any given technology and presented solutions to the problem. There is an obvious modeling issue between OO and relational data, but the given state of ORM technology solves much more problems than it actually creates. – Wayne Hartman May 20 at 3:19
vote up 7 vote down

I use ORMs for DB transactions that will have little overhead anyway; simple, atomic CRUD tasks that don't occur multiple times a second for example. However, when you have a large query that requires many joins and parameters and will return a potentially large dataset, you really need to get down to the SQL level to fine tune it to get the exact data you need and to make sure the query is optimized.

link|flag
vote up 2 vote down

There is pretty good reason to not use one if the application is dealing with lots of bulk importing and exporting of data. This functionality is now being provided by some ORMs and it is improving but it is still measurably slower than doing it manually.

Not using one will probably decrease developer productivity but if the solution requires the best possible bulk data performance, that is one of the costs.

link|flag
Your second statement makes me smile. If solving problems decreases productivity, I want to be the least productive developer, so I get to actually solve problems, instead of regurgitate patterns! – Tom May 20 at 3:32
Very true, Tom. I choose solutions over patterns. But, for example, needing to have validation rules in multiple places in order to maximize speed is always a headache, especially for those left to support the code. – Steven Lyons May 20 at 3:44

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