Possible Duplicate:
Are there good reasons not to use an ORM?

I've just started learning what an ORM is and how it can help me save time and make applications more secure. Since this is new to me, after using ugly SqlCommands and whatnot in my C# code, this is the best thing since sliced bread.

However since I'm new I might not be aware of the pitfalls they bring.

When should I NOT use an ORM?

EDIT: Why are three people voting to close this perfectly legal question? There must be some concrete reasons why you would not use an ORM.

link|improve this question

The short answer is "It depends", the long answer is "It really depends on your design" and the medium answer is "When you don't need to". – Lazarus Jul 7 '10 at 14:54
1  
@Lazarus, thank you. Now I completely understand. – Sergio Tapia Jul 7 '10 at 14:56
glad to be of service ;) It really is a choice rather than a clearly defined pattern, there are reasons not to use an ORM but in general application terms I wouldn't expect to see you naturally tending toward an ORM for high-performance situations as that's not normally linked with creating object graphs for your data. More often you are bulk or rapidly inserting raw data or using views for output. If you need to access and represent your data using objects in your code then use an ORM, otherwise use the native driver and your db's native language. – Lazarus Jul 7 '10 at 15:37
The close votes are due to it being close to a duplicate (if not actually a duplicate) and also because it's not a clear cut situation it's open to discussion and therefore, subjective and argumentative (2 developers in a room = at least 3 opinions). – Lazarus Jul 7 '10 at 15:40
How would it make it more 'secure'? – CraigJ Dec 2 '11 at 11:30
feedback

closed as exact duplicate by Lazarus, Mitch Wheat, R0MANARMY, marc_s, dtb Jul 7 '10 at 15:41

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 1 down vote accepted

Bulk operations are best done as close to the SQL as you can get -- inserting 1000 rows using an ORM is likely to be less performant than creating a large SQL string and sending it down to the server.

link|improve this answer
feedback

I found out that there are situations in which, for performance-critical code, the generated SQL statements are not optimal. I think that this is a typical use-case when you should not use an ORM.

You should always check what the generated SQL looks like and analyze the impact of changing some calls with custom SQL in order to improve performance.

link|improve this answer
You can use custom SQL Statements with an ORM like Linq-to-SQL? – Sergio Tapia Jul 7 '10 at 14:57
It really depends on the ORM you use, but you can always fall-back to accessing the database with the native driver. – the_void Jul 7 '10 at 15:02
feedback

This is like when to use assembler or C#. When you need to perform very specific operations and/or optimize your code, perhaps you will have to go down some levels. If you don't have these specials needs you will implement faster and more easily using higher level libraries-wrappers-languages or whatever.

link|improve this answer
feedback

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