條件CakePHP的過濾數據如果我有車型,如:在其相關的數據
User hasMany house hasMany belongings
,我想選擇所有用戶和相關的車型,但只有當用戶有一個或多個物品 - 如何我會設置這個條件嗎?謝謝!!
條件CakePHP的過濾數據如果我有車型,如:在其相關的數據
User hasMany house hasMany belongings
,我想選擇所有用戶和相關的車型,但只有當用戶有一個或多個物品 - 如何我會設置這個條件嗎?謝謝!!
什麼你正在尋找的是由相關聯的模型濾波/分頁。
有點相關的解決方案在這裏:
CakePHP pagination with HABTM models
Paginate results filtered by condition on associated model (HABTM) using Containable
使用counterCache,則可以設置條件在分頁:「belonging_count>」 => 0
你的意思是隻返回誰擁有在他們的財物的房屋用戶? –