考虑以下问题:
我在Article
和Author
之间有一个多对一关联。
class Author{
/**
* ...
*@var ArrayCollection_of_Article
*/
public $articles;
}
class Article{
/**
* ...
*@var Author
*/
public $author;
}
制作新的Article
我有两种类型的代码:
第一个:
$author = ORM::Find("Author",12); // fetch an Author with ID=12
$art = new Article();
$art->author=$author;
$author->articles->add($art);
ORM::Persist($art); // persist it to write to database
第二个:(省略第4行)
$author = ORM::Find("Author",12); // fetch an Author with ID=12
$art = new Article();
$art->author=$author;
ORM::Persist($art); // persist it to write to database
哪一个是正确的
第一个是正确的。但是第二个会导致错误,比如下面的错误:
A new entity was found through a relationship that was not configured to cascade persist operations
我想知道第二个是否可能,或者它总是导致sql错误
谢谢
您必须使用getter和setter访问关系,这是因为Doctrine构建了一个从Entity类扩展的Proxy类,并覆盖getter以提供延迟加载。