You Shouldn't Use ORMs
diploi.com·4h·
Discuss: Hacker News
Flag this post

Jump to TLDR? >


This post is mainly intended for coders early in their careers, ✨vibe coders✨ and anyone using an ORM just because

We do not use ORMs

We have tried all kinds of ORMs and in the end they have all proven to be a hindrance. Our recommendation: Bite the bullet, learn your SQL and as a bonus, you will have a skill that lasts for life. ORMs add a layer of abstraction that will give you all kinds of nightmares

Now, I imagine, if you use ORMs regularly, your blood pressure went up a tiny bit, so I’ll add a caveat here:

If you are working on somewhat simple applications, without unusual reads and/or writes, sure!

Writing SELECT <something> FROM <someTable> for every case when you need to query/insert/delete/patch some data seems silly, we r…

Similar Posts

Loading similar posts...