web-dev-qa-db-ja.com

Symfony2 / Doctrine:OneToManyをカスケードする新しい行としてエンティティを再保存する方法

まず、この質問は エンティティをDoctrine 2 の別の行として再保存する方法)に似ています。

違いは、OneToMany関係を持つエンティティ内にデータを保存しようとしていることです。エンティティを親エンティティ(「1」側)の新しい行として再保存してから、後続の各子(「多」側)の新しい行として再保存したいと思います。

シンプルにするために、たくさんの生徒がいる教室の非常にシンプルな例を使用しました。

したがって、id = 1のClassroomAがあり、5つの瞳孔(id 1から5)があります。 Doctrine2内で、そのエンティティを取得し、データベースに再保存する方法を知りたいです(潜在的なデータ変更後)。すべて新しいIDを使用し、永続化/フラッシュ中に元の行は変更されません。

まず、Doctrineエンティティを定義しましょう。

教室エンティティ:

namespace Acme\TestBundle\Entity;

use Doctrine\ORM\Mapping as ORM;
use Doctrine\Common\Collections\ArrayCollection;

/**
 * @ORM\Entity
 * @ORM\Table(name="classroom")
 */
class Classroom
{
    /**
     * @ORM\Id
     * @ORM\Column(type="integer")
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    private $id;

    /**
     * @ORM\Column(type="string", length=255)
     */
    private $miscVars;  

   /**
     * @ORM\OneToMany(targetEntity="Pupil", mappedBy="classroom")
     */
    protected $pupils;

    public function __construct()
    {
        $this->pupils = new ArrayCollection();
    }       
    // ========== GENERATED GETTER/SETTER FUNCTIONS BELOW ============

}

瞳孔エンティティ:

namespace Acme\TestBundle\Entity;

use Doctrine\ORM\Mapping as ORM;
use Doctrine\Common\Collections\ArrayCollection;

/**
 * @ORM\Entity
 * @ORM\Table(name="pupil")
 */
class Pupil
{
    /**
     * @ORM\Id
     * @ORM\Column(type="integer")
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    private $id;

    /**
     * @ORM\Column(type="string", length=255)
     */
    private $moreVars;

    /**
     * @ORM\ManyToOne(targetEntity="Classroom", inversedBy="pupils")
     * @ORM\JoinColumn(name="classroom_id", referencedColumnName="id")
     */
    protected $classroom;   

    // ========== GENERATED FUNCTIONS BELOW ============
}

そして、私たちの一般的なアクション関数:

public function someAction(Request $request, $id)
{
    $em = $this->getDoctrine()->getEntityManager();

    $classroom = $em->find('AcmeTestBundle:Classroom', $id);

    $form = $this->createForm(new ClassroomType(), $classroom);

    if ('POST' === $request->getMethod()) {
        $form->bindRequest($request);

        if ($form->isValid()) {
            // Normally you would do the following:
            $em->persist($classroom);
            $em->flush();

            // But how do I create a new row with a new ID 
            // Including new rows for the Many side of the relationship

            // ... other code goes here.
        }
    }

    return $this->render('AcmeTestBundle:Default:index.html.twig');
}

クローンを使用してみましたが、親の関係(この例ではClassroom)のみが新しいIDで保存され、子のデータ(Pupils)は元のIDに対して更新されました。

事前に支援に感謝します。

18
dividebyzeroZA

clone のことは...

オブジェクトのクローンが作成されると、PHP 5は、オブジェクトのすべてのプロパティの浅いコピーを実行します。他の変数への参照であるプロパティは、参照のままになります。

Doctrine> = 2.0.2を使用している場合は、独自のカスタム__clone()メソッドを実装できます。

_public function __clone() {
    // Get current collection
    $pupils = $this->getPupils();

    $this->pupils = new ArrayCollection();
    foreach ($pupils as $pupil) {
        $clonePupil = clone $pupil;
        $this->pupils->add($clonePupil);
        $clonePupil->setClassroom($this);
    }
}
_

注:Doctrine 2.0.2より前では、生成されたプロキシクラスはチェックしない独自の__clone()を実装しているため、エンティティに__clone()メソッドを実装することはできません。 forまたはparent::__clone()を呼び出します。したがって、代わりにclonePupils()Classroom内)のような別のメソッドを作成し、エンティティのクローンを作成した後に呼び出す必要があります。どちらの方法でも、__clone()またはclonePupils()メソッド内で同じコードを使用できます。

親クラスのクローンを作成すると、この関数は子オブジェクトのクローンでいっぱいの新しいコレクションも作成します。

_$cloneClassroom = clone $classroom;
$cloneClassroom->clonePupils();

$em->persist($cloneClassroom);
$em->flush();
_

永続化を容易にするために、_$pupils_コレクションで永続化をカスケードすることをお勧めします。

_/**
 * @ORM\OneToMany(targetEntity="Pupil", mappedBy="classroom", cascade={"persist"})
 */
protected $pupils;
_
30
Phil

私はこのようにそれをしました、そしてそれはうまく働きます。

複製されたエンティティの中にはmagic __clone()があります。そこで、1対多も忘れないでください。

/**
 * Clone element with values
 */
public function __clone(){
    // we gonna clone existing element
    if($this->id){
        // get values (one-to-many)
        /** @var \Doctrine\Common\Collections\Collection $values */
        $values = $this->getElementValues();
        // reset id
        $this->id = null;
        // reset values
        $this->elementValues = new \Doctrine\Common\Collections\ArrayCollection();
        // if we had values
        if(!$values->isEmpty()){
            foreach ($values as $value) {
                // clone it
                $clonedValue = clone $value;
                // add to collection
                $this->addElementValues($clonedValue);
            }
        }
    }
}
/** 
 * addElementValues 
 *
 * @param \YourBundle\Entity\ElementValue $elementValue
 * @return Element
*/
public function addElementValues(\YourBundle\Entity\ElementValue $elementValue)
{
    if (!$this->getElementValues()->contains($elementValue))
    {
        $this->elementValues[] = $elementValue;
        $elementValue->setElement($this);
    }

    return $this;
}

どこかでクローンを作成します:

// Returns \YourBundle\Entity\Element which we wants to clone
$clonedEntity = clone $this->getElement();
// Do this to say doctrine that we have new object
$this->em->persist($clonedEntity);
// flush it to base
$this->em->flush();
2
derkien