我有不一致的映射问题.我在我的应用程序中有两个实体 – 联系人(具有联系人的实体…)和信息,具有该联系人信息的实体(电话,电子邮件,传真,网站等).
在我的Contact实体中,我为每种类型创建了变量,我在我的应用程序中需要它,因为这种方式更容易:
/** * @ORM\OneToMany( targetEntity = "RelationInformations",mappedBy = "objectID",cascade={"persist"} ) */ protected $contactInformations; /** * @ORM\OneToMany( targetEntity = "RelationInformations",cascade={"persist"} ) */ protected $contactPhone; /** * @ORM\OneToMany( targetEntity = "RelationInformations",cascade={"persist"} ) */ protected $contactFax; /** * @ORM\OneToMany( targetEntity = "RelationInformations",cascade={"persist"} ) */ protected $contactWebsite; /** * @ORM\OneToMany( targetEntity = "RelationInformations",cascade={"persist"} ) */ protected $contactEmail; /** * @ORM\OneToMany( targetEntity = "RelationInformations",cascade={"persist"} ) */ protected $contactCommunicator;
例如,手机的吸气器看起来像:
/** * Get contactPhone * * @return \Doctrine\Common\Collections\Collection */ public function getContactPhone() { if ($this->contactPhone !== null) { foreach ($this->contactPhone->toArray() as &$info) { if ($info->getType() !== RelationInformations::TYPE_TELEPHONE) { $this->contactPhone->removeElement($info); } } } return $this->contactPhone; }
这样我只能通过使用此函数从我的信息中获得手机,因此在应用程序的其他位置更容易获得我想要的内容.
关系信息实体:
/** * @var integer * @ORM\Column( name = "rnis_id",type = "integer",nullable = false ); * @ORM\Id * @ORM\GeneratedValue( strategy = "AUTO") */ private $id; /** * @var integer * @ORM\ManyToOne( targetEntity = "RelationContact",inversedBy = "contactInformations" ) * @ORM\JoinColumn( name = "rnis_object_id",referencedColumnName="rnct_id",nullable = false ); */ private $objectID; /** * @var string * @ORM\Column( name = "rnis_value",type = "string",nullable = false ) */ private $value; /** * @var string * @ORM\Column( name = "rnis_type",nullable = false,length = 1 ) */ private $type; /** * @var boolean * @ORM\Column( name = "rnis_active",type = "boolean",nullable = false ) */ private $active; /** * @var boolean * @ORM\Column( name = "rnis_default",nullable = false ) */ private $default; /** * @var string * @ORM\Column( name = "rnis_txt",nullable = true ) */ private $txt; /** * @var integer * @ORM\Column( name = "rnis_type_private_business",nullable = true ) */ private $typePrivateBusiness;
问题是在我的探查器中我可以看到像下面这样的错误.应用程序正常工作但我想解决此问题.
The mappings RelationContact#contactPhone and RelationInformations#objectID are inconsistent with each other. The mappings RelationContact#contactFax and RelationInformations#objectID are inconsistent with each other. The mappings RelationContact#contactWebsite and RelationInformations#objectID are inconsistent with each other. The mappings RelationContact#contactEmail and RelationInformations#objectID are inconsistent with each other. The mappings RelationContact#contactCommunicator and RelationInformations#objectID are inconsistent with each other. The mappings RelationContact#contactBrand and RelationInformations#objectID are inconsistent with each other.
您不能在相同的mappedby键上映射相同的OneToMany关系,因此,学说映射验证的beahvIoUr是正确传递第一个contactInformations引用而在另一个上失败.
原文链接:https://www.f2er.com/php/240267.html尝试将实体映射为一对多,单向连接表,如Doctrine2 doc reference中所述
希望这有帮助