我在MongoDb中有两个表,两者都是相互关联的。
例如Employee
和Department
。 Employee
与Department
。
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
请给我一个解决方案
感谢。