Hey :slightly_smiling_face: I'm curious which ORMs...
# general
g
Hey šŸ™‚ I'm curious which ORMs are y'all using with your Postgres DBs.
r
from what I’ve seen trying out various ORMs, there’s not much ORMs do specific to Postgres
g
Agree :)
Which ones did you try? And what did you end up sticking with?
f
Probably depends first on what language you're using šŸ˜… I just use the basics personally šŸ˜… prisma for node, sqlalchemy for python and hibernate for java 😁
g
Thanks :) I kinda had those as ā€œbasicsā€ too.
p
We're using Django
šŸ‘ 1
f
SQL 🧌
šŸ’„ 2
r
@Gwen Shapira being a dinosaur, I mainly write in PHP. currently use https://cycle-orm.dev/ - which I would call a modernized version of Doctrine framework. (doctrine feels like java’s Hibernate and let’s be honest, it’s really heavy) I’ve tried scala’s Slick and I still have mixed feelings. it worked perfectly, but I’m still unsure if I really wanted to filter map and flatmap over my tables
I’ve used laravel’s Eloquent which is ActiveRecord, I wouldn’t use active record for ā€˜anything serious’
g
interesting! Over on Twitter it looked super popular.
r
it is and it’s the backbone of modern php ecosystem for small to medium systems