1
只是一個大約的OrderBy快速的問題CakePHP中找到操作。假設我有3個模型相互關聯。當我做任何我的3種型號的find('all')
CakePHP的查詢,我得到的結果還包括來自其他2款機型的數據。例如,假設我的車型有:CakePHP的順序由另一個模型字段關聯
1- User
2- School
3- Country
如果我做$this->find('all')
內UsersController
,因爲我的三個型號都連在一起,我會得到這樣的:
Array
(
[0] => Array
(
[User] => Array
(
[id] => 'the_auto_incrementing_id'
// other table columns
[created] 'creation_date'
[modified] 'modification_date'
)
[School] => Array
(
[id] => 'the_auto_incrementing_id'
// other table columns
[created] 'creation_date'
[modified] 'modification_date'
)
[Country] => Array
(
[id] => 'the_auto_incrementing_id'
// other table columns
[created] 'creation_date'
[modified] 'modification_date'
)
)
)
我的問題是,雖然我find('all')
查詢是在User
模型發起的,是有可能orderBy
假設模型School
例如created
場?
請讓我知道這是不可能的
謝謝