|
|
|
|
|
by jamie_ca
264 days ago
|
|
Either joins for a fat query, or aggregate the subqueries. For the latter, it's along the lines of `select * from posts where ...` and `select * from authors where id in {posts.map(author_id)}`. And then once it's in memory you manually work out the associations (or rely on your ORM to do it). |
|