我正在尝试订购一组结果但由于某种原因它没有正确排序。我在这里犯了一些错误吗?
$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