MongoDb EMongoDocument YII,集合关系

时间:2014-12-02 13:20:07

标签: php mongodb yii relationship

我在MongoDb中有两个表,两者都是相互关联的。

例如EmployeeDepartmentEmployeeDepartment

相关
Employee
{
    '_id' : ID_OF_EMPLOYEEE,
    'Name' : NAME_OF_EMPLOYEEE
    'dept_id' : ID_OF_EMPLOYEES_DEPT
}

DEPT
{
    '_id' : ID_OF_EMPLOYEEE,
    'Name' : NAME_OF_DEPT
}

现在,我想创建一个YII Relation,它将命名为Employee's Department(就像我们在Relation DB中所做的那样)。它应该看起来像

 $dept = $employee->department

请给我一个解决方案

感谢。

0 个答案:

没有答案