Cakephp 3模型分页

时间:2017-12-08 11:36:27

标签: php cakephp model cakephp-3.0

我有三张桌子

EventInvites 往来 组织

邀请有一个联系人,联系人有一个组织

使用类似的方式正确显示数据。

post

我的分页工作正常,因为联系人姓名邀请状态等,但我无法想出按crmcontacts排序 - > organisations.name

  $invitees = $this->CrmEventInvites->find()
            ->where(['CrmEventInvites.crm_event_id' => $CrmEvent->id, 'CrmEventInvites.deleted' => '0'])
            ->contain(['CrmContacts' => ['CrmOrganisations','CrmContactRoles.CrmRoles'] ]

                        );  

任何想法?

0 个答案:

没有答案