在相关模型上应用条件时,我对 cakephp 查找方法有疑问。这是我的场景
Machine belongsTo Category
Machine hasAndBelongsToMany Products
(机器生产的产品)
现在我想要所有这些类别的机器,这些机器具有并且属于特定产品。
即结果集应该像下面的数组!
Category 1
Machine 1 (that can produce for example product1)
machine 2 (that can produce product 1)
Category 2
machine 3 (that can produce product 1)
machine 4 (that can produce product 1)
我已经尝试了可包含的行为并加入但没有运气。