我有Product
模型[id, parent_id, x
]。
我想仅在ProductParent
和Product.x = 0
时附加每个产品,单Product.parent_id = ProductParent.id
。
我尝试的是:
public $hasOne = array(
'ProductParent' => array(
'className' => 'Product',
'foreignKey' => false,
'conditions' => array(
'ProductParent.id = Product.parent_id',
'Product.x' => 0
)
)
);
输出Product.parent_id
未知。
答案 0 :(得分:0)