|
|
|
|
|
by kaba0
871 days ago
|
|
ORMs never block you from issuing raw SQL queries. But mapping the results to entities inside your programming language’s abstraction is a repetitive task, ready to be abstracted away. The reverse direction is the same way. I feel most of the criticism of ORMs come from people who don’t actually know how to properly use one. They were never meant for OLAP, they are for OLTP. |
|
Now I only use ORM really only for some basic CRUD queries, if that.