Symfony2和Doctrine:OneToMany关系复制表中的数据

时间:2013-12-20 13:54:25

标签: php sql symfony doctrine-orm entity

我有两张桌子:文章和电子邮件。 电子邮件表将包含与特定文章相关的电子邮件,例如:

id    |  article_id |     email
1     |      1      |  test@etest.com
2     |      1      |  test2@test.com
3     |      2      |  test@etest.com
4     |      2      |  test3@test.com

等...

article_id与文章表中的id之间存在关联。

在我的实体中,我有这段代码:

class Articles
{ 
    ....
     /**
      * @ORM\OneToMany(targetEntity="\Acme\DemoBundle\Entity\Emails", mappedBy="articles")
      */
      private $emails_rel; 

    ...
}

class Emails
{ 
    /**
     * @ORM\ManyToOne(targetEntity="\Acme\DemoBundle\Entity\Articles", inversedBy="emails_rel", cascade={"all"})
     * @ORM\JoinColumn(name="article_id", referencedColumnName="id")
     **/
    private $articles; 
}

在我的控制器中,我正在做一些测试,我会坚持或不坚持某些实体。 最后,我正在做一个同花顺

$em->flush(); 

奇怪的是,在我的电子邮件表中,一旦我进行刷新,数据就会重复。使用

测试实体管理器时
$em->getUnitOfWork()->getScheduledEntityInsertions()

我得到一个空数组。

知道为什么吗?非常感谢你。

编辑:

以下是测试:

$articl = new Articles();
$articl = $em->createQuery("SELECT p FROM Acme\DemoBundle\Entity\Articles p WHERE p.bMailToMatch = 1")->getResult();
$nb = count($articl);

// BECAUSE I WILL WORK WITH A LOTS OF ENTRIES - PREVENT MEMORY OVERFLOW
$em->clear();    

if(isset( $articl )) {
    foreach($articl as $i => $art) {
        $array_emails = null;

        $art_emails = $art->getEmailsRel();
        foreach ($art_emails as $e) {
            $array_emails[] = $e->getEmail();
        }

        $art_id = $art->getId ();
        echo "\n\n---------- $i ----------\n " . $art->getDoi ();

        // TAKES ARTICLE WITH ZERO EMAIL
        if (!isset($array_emails) ) {
            $updated_article = $em->getRepository('AcmeDemoBundle:Articles')->findOneBy(array( 'id' => ($art_id)    )) ; 
            // Because of the clearing of the entity manager
            echo"\n\n$art_id Article DOI \n".$updated_article->getDoi();
            echo "\n==>Put the BMailToMatch's flag to 0";
            $updated_article->setBMailToMatch(0);
            $em->persist($updated_article);
        }
        else {
            echo " ==> ok\n";
        }

        if (($i % 3) == 0) {
            $em->flush();
            $em->clear();
        }
    }

    $em->flush();
    $em->clear();
}

return new Response ( "\n\nFinished!!\n" );             

2 个答案:

答案 0 :(得分:9)

在我复制之前我没有发现你的问题,但现在它显而易见了。 您的问题来自于使用clear方法。 实际上,如果你清理了你的实体经理,它就会忘记它们的存在,并将它们作为新的实体管理器存在。

如果您遇到性能问题,可以限制处理的项目数量,并在完成之前递归执行。

我希望它对你有帮助;)

祝你好运

干杯

答案 1 :(得分:3)

如果我正确阅读,那么代码的简化版本如下:

$articles_with_mail_to_match_true = $em->createQuery("SELECT p FROM Acme\DemoBundle\Entity\Articles p WHERE p.bMailToMatch = 1")->getResult();

foreach($articles_with_mail_to_match_true as $i => $article_with_mail_to_match_true) 
{
    if ( count($article_with_mail_to_match_true->getEmailsArray()) < 1 ) 
    {
        $article_copy_object = $em->getRepository('AcmeDemoBundle:Articles')->findOneBy(array( 'id' => ($article_with_mail_to_match_true->getId()) )) ; 

        $article_copy_object->setBMailToMatch(0);

        $em->persist($article_copy_object);
    }

    if (($i % 3) == 0) {
        $em->flush();
    }
}

$em->flush();

在更改一个值之后,您唯一坚持的是$ article_copy_object。如果是这种情况那么要么A.你的实体中有一些我们在这个代码示例中看不到的东西或者B.它发生在其他地方而不是在这个操作期间。