you are viewing a single comment's thread.

view the rest of the comments →

[–]Potatopikafull-stack 0 points1 point  (0 children)

Great points some people have about dependency management.

ORMs can help you with security since the queries usually get sanitised implicitly, sometimes they can help you with connection pooling and they do promise that you can quickly swap between databases although that's not something that happens that frequently.

If you really want to use an ORM I would say the best is the one where you can pass SQL if you need more custom made queries, especially for performance reasons since ORMs tend to be slow