尝试跨包定义一对多关系时,会发生以下情况:
在链中找不到“Mana \ ClientBundle \ Entity \ Member”类 配置的命名空间Mana \ SplitBundle \ Entity
我现在看到了相互矛盾的答案,即这种关系能够而且无法实现。假设它可以(因为stackoverflow中的其他人似乎已经完成了它),除了在AppKernel.php中注册bundle并在实体中输入注释之外,还需要什么配置? resolve_target_entity_listener
似乎没有什么区别。
嗯,我知道我已经离开了我的深度,但这是我在尝试显示客户端实体时单步执行代码时所观察到的。
探查器中的错误消息
发生指定的目标实体'Mana \ ClientBundle \ Entity \ Member' Mana \ SplitBundle \ Entity \ Client#members是未知的或不是实体。
是因为SchemaValidator将$cmf->isTransient($assoc['targetEntity'])
评估为true,其中成员实体中的targetEntity。 PHPdoc注释表明未加载此实体的元数据。如果我理解正确,这意味着没有加载关于关系的注释。但观察变量值表明已经阅读了注释。
我完全错过了一些应该显而易见的事情吗?或者我离开了太远了?
我已确认doctrine:mapping:info
会检测到不正确的FQCN。数据夹具是正确的。对默认和拆分连接使用实体管理器和数据库连接是正确的。对于客户端实体(OneToMany或ManyToOne)中定义的任何关系,该错误仍然存在。
doctrine:
dbal:
default_connection: default
connections:
default:
driver: "%database_driver%"
host: "%database_host%"
port: "%database_port%"
dbname: "%database_name%"
user: "%database_user%"
password: "%database_password%"
charset: UTF8
mapping_types:
enum: string
split:
driver: "%database_driver2%"
host: "%database_host2%"
port: "%database_port2%"
dbname: "%database_name2%"
user: "%database_user2%"
password: "%database_password2%"
charset: UTF8
mapping_types:
enum: string
entity_managers:
default:
connection: default
mappings:
ManaClientBundle: ~
split:
connection: split
mappings:
ManaSplitBundle: ~
/**
* @ORM\OneToMany(targetEntity="Mana\ClientBundle\Entity\Member", mappedBy="client")
* @ORM\OrderBy({"dob" = "ASC"})
*/
protected $members;
/**
* @ORM\ManyToOne(targetEntity="Mana\SplitBundle\Entity\Client",inversedBy="members",cascade={"remove", "persist"})
* @ORM\JoinColumn(name="cid", referencedColumnName="id")
*
*/
protected $client;
$ php app/console doctrine:mapping:info
Found 12 mapped entities:
[OK] Mana\ClientBundle\Entity\Agency
[OK] Mana\ClientBundle\Entity\Center
[OK] Mana\ClientBundle\Entity\Contact
[OK] Mana\ClientBundle\Entity\Contactdesc
[OK] Mana\ClientBundle\Entity\Counties
[OK] Mana\ClientBundle\Entity\Ethnicity
[OK] Mana\ClientBundle\Entity\Incomehistory
[OK] Mana\ClientBundle\Entity\Incomesrc
[OK] Mana\ClientBundle\Entity\Member
[OK] Mana\ClientBundle\Entity\Note
[OK] Mana\ClientBundle\Entity\Referral
[OK] Mana\ClientBundle\Entity\User
$ php app/console doctrine:mapping:info --em=split
Found 1 mapped entities:
[OK] Mana\SplitBundle\Entity\Client
答案 0 :(得分:3)
您应该看到Using Relationships with Multiple Entity Managers
如果您有具有单独连接和实体管理器的单独数据库,则Doctrine无法管理跨包关系。相反,在这种情况下,客户端实体必须驻留在相同的模式/包中,并定期从外部源刷新。
但是,如果您只有一个与数据库的连接和一个实体管理器,则可以管理跨包关系。 (在此描述:OneToMany Relation on cross project entities (Symfony2/Doctrine))