When you’re querying Postgres, you need to choose between:
- Using an ORM. This gives you “native” feeling APIs to query the database.
- Using raw SQL. This gives you the ultimate flexibility and performance and gives you more transferable skills. It’s always helpful to know how to write SQL.
Postgres ORM
If you want to use an ORM to query Postgres, I recommend using https://typeorm.io. If you’re starting with a fresh project, you can use their typeorm init
CLI command:
When you’re querying Postgres, you need to choose between:
Using an ORM. This gives you “native” feeling APIs to query the database.
Using raw SQL. This gives you the ultimate flexibility and performance and gives you more transferable skills. It’s always helpful to know how to write SQL.
Postgres ORM
If you want to use an ORM to query Postgres, I recommend using https://typeorm.io. If you’re starting with a fresh project, you can use their typeorm init CLI command: […]