Backend

ORM

Also known as: object-relational mapping

ORMs (Eloquent in Laravel, Prisma in Node, ActiveRecord in Rails) generate SQL under the hood. Great for productivity, sometimes bad for performance (N+1 query problems). Rule: use the ORM for CRUD, drop to raw SQL for hot-path queries.

Chat With Us!