实体"父母"存储在数据库database1中 实体" Child"存储在数据库database2中
如何获取Parent childs列表?
例如:
$repo = $this->getDoctrine()->getRepository('AppBundle:Parent', 'database1');
$parent = $repo->find(1);
foreach ($parent.getChilds() as $child) {}
抛出异常:未定义的表:7 ERROR:relation" child"不存在