I have a sort of map table that I need to perform multiple joins on to get other necessary data. How do you do that with Propel?
Sql would be something like:
SELECT * FROM table1
INNER JOIN table2 on table1.col1 = table2.id
INNER JOIN table3 on table1.col2 = table3.id
I just read their instructions wrong.
To do this you just do:
Then you do:
Then you can access the properties through the getters: