|
|
|
|
|
by ozim
5 days ago
|
|
In my experience ORM doesn’t save anything on writing queries. You still have to write somewhat same code that looks like sql query. You still need to know joins, you still need to know DB structure. Getting rid of SQL queries is not the job of ORM. ORM saves you time on object mapping boilerplate THAT IS THE JOB of an ORM it is right there in the name „object relational mapper”. |
|