Is there any way to sort (or order by) in ORM by using a value from a foreign table?
Can you do something like the following:
ORM::factory("table")->order_by("table.foregin_table.column" , "ASC")
Or do you have to use some regular MySQL and join the tables together old school?
orm::factory("table")->with("table2")->order_by("table2.column" , "ASC")should work (not tested). Have you tried this? – biakaveron Sep 10 '10 at 6:12