如何在CakePHP3中使用'order'?

时间:2017-10-25 15:09:21

标签: cakephp cakephp-3.0 cakephp-3.x

我正在尝试订购一组结果但由于某种原因它没有正确排序。我在这里犯了一些错误吗?

$quotations = $this->Quotations->find()
    ->select(['Quotations.id' , 'Quotations.created' , 
'Quotations.supplier_id' , 'Quotations.approval' , 
        'Quotations.region'  ,'Quotations.ponumber' , 'Suppliers.id' , 
'Suppliers.name'])
    ->leftJoinWith('Suppliers')
    ->order(['Quotations.created' => 'DESC'])
    ->toArray();

使用CakePHP3 3.5.2

0 个答案:

没有答案