使用Cake 3.2.6
要显示成员的PaymentsByMembers
列表,请执行以下操作: role_id
按升序排列,后跟name
换句话说,我想通过关联的数据字段对主要模型进行排序。
$this->paginate = [
'contain' => [
'Issuers',
'Recipients', 'PaymentTypes'
],
'conditions' => $conditions,
'order' => ['Recipients.role_id' => 'ASC', 'Recipients.name' => 'ASC']
];
Payments by Member
属于Recipient
我只能在食谱中找到关于filtering by associated data的部分。
没有关于按关联数据排序的等价物。
我很乐意写下来。