FOSUserBundle Invitation 的安装已按照手册完成。
从表面上看,它确实有效。
但是,分析器会显示映射错误。
我认为按照手册中的规定设置了“inversedBy”设置。
你怎么看?
实体
/** @ORM\Entity */
class Invitation
{
/**
* @ORM\OneToOne(targetEntity="User", inversedBy="invitation", cascade={"persist", "merge"})
*/
protected $user;
// ...
/**
* @ORM\Entity
* @ORM\Table(name="fos_user")
*/
class User extends \FOS\UserBundle\Entity\User
{
/**
* @ORM\OneToOne(targetEntity="Invitation", inversedBy="user")
* @ORM\JoinColumn(referencedColumnName="code")
* @Assert\NotNull(message="Your invitation is wrong")
*/
protected $invitation;
// ...
探查器
FOS\UserBundle\Entity\User Valid
My\SampleBundle\Entity\User
The field My\SampleBundle\Entity\User#invitation is on the owning side of a bi-directional
relationship, but the specified mappedBy association
on the target-entity My\SampleBundle\Entity\Invitation# does not contain
the required 'inversedBy' attribute.
My\SampleBundle\Entity\Invitation
The field My\SampleBundle\Entity\Invitation#user is on the owning side of a bi-directional
relationship, but the specified mappedBy association
on the target-entity My\SampleBundle\Entity\User# does not contain
the required 'inversedBy' attribute.