I would like to be able to do the following:
.from("table1")
.leftOuterJoin("table2").on(...)
.leftOuterJoin("table3").on(...)
.where(...)
As far as I understand it is not possible to chain multiple left outer join statements after each other (or any other non-regular join). Any plans to add it?
I would like to be able to do the following:
As far as I understand it is not possible to chain multiple left outer join statements after each other (or any other non-regular join). Any plans to add it?