在 Yii 框架 v1.1.13
我有模块“A”,它的模型类“M1”与模块“B”中的“M2”相关。
现在我的问题是,如何在两个模型之间连接外键。
我想在模块 B 中正确引用 M2
public function relations()
{
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
return array(
'M2_property' => array(self::BELONGS_TO, 'B.M2', 'M2_id'),
)
}
提前致谢