是否可以在 cakephp 模型中与某些特定条件建立关系:例如:
var $belongsTo = array(
'Parent' => array(
'className' => 'Category',
'foreignKey' => 'parent_id',
'dependent' => true
)
);
parent_id
我想要关于 where field is not的上述关系0
。请概述如何做到这一点?