订购Kohana ORM的结果

时间:2010-10-05 01:00:20

标签: php orm kohana

我正在使用Kohana的ORM库,我想知道是否有任何方法可以订购生成的结果。

示例:

$priorities = ORM::factory('priority')->select_list('id','label'); //how to order these?

1 个答案:

答案 0 :(得分:8)

什么是select_list

顺便说一句,在kohana中的排序是由order_by()方法

执行的
...->order_by('field', 'asc')

您可以在http://kerkness.ca/kowiki/doku.php?id=building_complex_select_statements#order_by

找到更多样本

此wiki还包含许多关于kohana的有用文章:http://kerkness.ca/kowiki/doku.php