I'm new to building databases and I'm trying to do a JOIN based on a having three database tables.
Table A = ID, Name, etc
Table B = ID, Name, etc
Table C = ID, TableAId, TableBId
How can I JOIN these tables with query builder methods? I'm trying to make as few requests as possible, but am getting stumped on how it should all be written without doing three separate calls.