我使用Doctrine 2作为ZendFramework 1.11.2中的ORM的双向OneToMany关系。
注意:Doctrine没有创建数据库表。数据库是MySQL。
出于某种原因,当我持久化并将新的链接实体刷新到链接表(见下文)时,外键字段(container_id)被设置为NULL。但是,如果从'ManyToOne(targetEntity =“Shepherd \ Navigation \ Domain \ Container \ Model”,inversedBy =“links”)'行中删除'@'符号,则正确填充外键字段。
由于在删除“@”符号时将实体正确添加到数据库,因此某处的OneToMany关系出现了问题。
例如,如果我有一个名为$ link的链接模型(参见下面的伪代码)......
$link (Shepherd\Navigation\Domain\Link\Model)
{
id: '' // auto generated value
cid: 23 // the foreign key value
label: test
uri: test.com
... // other values not listed here for brevity
}
...当持久保存新链接模型并刷新实体管理器时,链接(shepherd_navigation_link)表中新插入行的container_id(外键)值为NULL。
$em // Assume $em is the Entity Manager
$em->persist($link);
$em->flush();
// The container_id in the newly added row in the
// link table (shepherd_navigation_link) is NULL
链接表架构:
CREATE TABLE `shepherd_navigation_link` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`container_id` int(10) unsigned DEFAULT NULL,
`node_id` int(10) unsigned DEFAULT NULL,
`parent_id` int(10) unsigned DEFAULT NULL,
`label` varchar(100) NOT NULL,
`options` text,
`events` text,
`privilege` varchar(100) NOT NULL,
`resource` varchar(100) DEFAULT NULL,
`uri` varchar(300) NOT NULL,
`visible` int(10) unsigned DEFAULT '1',
PRIMARY KEY (`id`),
KEY `container_id` (`container_id`)
) ENGINE=InnoDB
ALTER TABLE `shepherd_navigation_link` ADD FOREIGN KEY (container_id) REFERENCES shepherd_navigation_container(id)
链接实体模型:
/**
* @Entity
* @Table(name="shepherd_navigation_link")
*/
class
{
/**
* @Id
* @Column(type="integer")
* @GeneratedValue
*/
protected $id;
/**
* @Column(name="container_id", type="integer", nullable=false)
*/
protected $cid;
/**
* @Column(name="node_id", type="integer")
*/
protected $nid;
/**
* @Column(name="parent_id", type="integer", nullable=false)
*/
protected $pid;
/**
* @Column
*/
protected $label;
/**
* @Column(nullable=true)
*/
protected $options;
/**
* @Column(nullable=true)
*/
protected $events;
/**
* @Column
*/
protected $privilege;
/**
* @Column(nullable=true)
*/
protected $resource;
/**
* @Column
*/
protected $uri;
/**
* @Column(type="integer", nullable=true)
*/
protected $visible;
/**
* @OneToMany(targetEntity="Model", mappedBy="parent")
*/
private $children;
/**
* @ManyToOne(targetEntity="Model", inversedBy="children")
*/
private $parent;
/**
*) @ManyToOne(targetEntity="Shepherd\Navigation\Domain\Container\Model", inversedBy="links"
*/
private $container;
/**
* @OneToOne(targetEntity="Shepherd\Navigation\Domain\Link\Position", inversedBy="link")
*/
private $node;
public function __construct()
{
$this->children = new \Doctrine\Common\Collections\ArrayCollection();
}
/** Accessors and Mutators excluded for brevity **/
}
注意:受保护的属性$ cid映射到上面的container_id列。
容器表架构:
CREATE TABLE `shepherd_navigation_container` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`description` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB
容器实体模型:
/**
* @Entity
* @Table(name="shepherd_navigation_container")
*/
class Model
{
/**
* @Id
* @Column(type="integer")
* @GeneratedValue
*/
protected $id;
/**
* @Column
*/
protected $name;
/**
* @Column(nullable=true)
*/
protected $description;
/**
* @OneToMany(targetEntity="Shepherd\Navigation\Domain\Link\Model", mappedBy="container")
*/
private $links;
/**
* Constructor
*/
public function __construct()
{
$this->links = new \Doctrine\Common\Collections\ArrayCollection();
}
/** Accessors and Mutators excluded for brevity **/
}
我错过了什么?我做错了什么?
答案 0 :(得分:5)
我找出了问题(通过阅读文档http://www.doctrine-project.org/docs/orm/2.0/en/tutorials/getting-started-xml-edition.html)。事实证明实际上存在一些问题。
问题1 =>我没有提供设置容器变量的方法。
// Inside the Link Entity class...
public function setContainer($container)
{
$this->container = $container;
}
问题2 =>我没有设置容器值。错误的是,我认为Doctrine 2在内部做了这个,但我发现在刷新之前需要设置容器变量。
我的愚蠢监督。
$link = new Link();
$link->setContainer($container);
// $em is the Entity Manager
$em->persist($link);
$em->flush();
问题3 =>容器($ container)需要在刷新之前保留,或者容器实体上的@OneToMany定义需要更改。我选择更新容器实体定义。请查看此处(http://www.doctrine-project.org/docs/orm/2.0/en/reference/working-with-associations.html#transitive-persistence-cascade-operations)以获取更多信息。
// Inside the Container Entity class...
/**
* @OneToMany(targetEntity="Shepherd\Navigation\Domain\Link\Model", mappedBy="container", cascade={"persist"})
*/
进行这些更改并删除链接实体类中的@OneToOne节点关系后(事实证明我不需要它),一切正常。我希望这有助于某人。