Symfony2プロジェクトでは、ブログ投稿といわゆるプラットフォームとの関係を作成する必要がありました。プラットフォームは、サイトの表示に使用するドメインに基づいて特定のフィルターを定義します。例:url first-example.comでサイトに参加する場合、サイトはこの特定のプラットフォームに接続されているブログ投稿のみを提供します。
そのために、PostとPlatformという2つのエンティティを作成しました。その後、それらを多対多の関係でマッピングしました。 DoctrinesのEntityRepository
の組み込み関数findBy()
からこの多対多の関係を介してデータを取得しようとしています。
// every one of these methods will throw the same error
$posts = $postRepo->findBy(array('platforms' => array($platform)));
$posts = $postRepo->findByPlatforms($platform);
$posts = $postRepo->findByPlatforms(array($platform));
$postRepo
はPost
エンティティの正しいリポジトリであり、$platform
は既存のPlatform
オブジェクトです。
どちらの方法でも、次のエラーが表示されます。
ErrorException: Notice: Undefined index: joinColumns in [...]/vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/BasicEntityPersister.php line 1495
[...]/vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/BasicEntityPersister.php:1495
[...]/vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/BasicEntityPersister.php:1452
[...]/vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/BasicEntityPersister.php:1525
[...]/vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/BasicEntityPersister.php:1018
[...]/vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/BasicEntityPersister.php:842
[...]/vendor/doctrine/orm/lib/Doctrine/ORM/EntityRepository.php:157
[...]/src/Foobar/BlogBundle/Tests/ORM/PostTest.php:102
この方法で多対多の関係で関連するエンティティを取得することも可能ですか、それとも自分でこれらの関数を記述する必要がありますか?奇妙なことは:Doctrineは「それは不可能です。」というようなエラーはスローしませんが、内部のE_NOTICE
。です。ここでいくつかの点が欠けています。
おもしろい部分を削除すると、2つのエンティティは次のようになります。
<?php
namespace Foobar\CommunityBundle\Entity;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;
// [...] other namespace stuff
/**
* @ORM\Entity(repositoryClass="Foobar\CommunityBundle\Entity\Repository\PlatformRepository")
* @ORM\Table(name="platforms")
*/
class Platform
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
// [...] other field stuff
}
<?php
namespace Foobar\BlogBundle\Entity;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;
// [...] other namespace stuff
/**
* @ORM\Entity(repositoryClass="Foobar\BlogBundle\Entity\Repository\PostRepository")
* @ORM\Table(name="posts")
*/
class Post implements Likeable, Commentable, Taggable, PlatformAware
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ORM\ManyToMany(targetEntity="Foobar\CommunityBundle\Entity\Platform", cascade={"persist"})
* @ORM\JoinTable(name="map_post_platform",
* joinColumns={@ORM\JoinColumn(name="post_id", referencedColumnName="id")},
* inverseJoinColumns={@ORM\JoinColumn(name="platform_id", referencedColumnName="id")}
* )
*/
protected $platforms;
// [...] other fields
/**
* Constructor
*/
public function __construct()
{
// [...]
$this->platforms = new ArrayCollection();
}
}
そしてもちろんcomposer.jsonファイル(同様に関連する行まで削除されます)
{
[...]
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.1.*",
"doctrine/orm": ">=2.2.3,<2.4-dev",
"doctrine/doctrine-bundle": "1.0.*",
"doctrine/doctrine-fixtures-bundle": "dev-master",
[...]
},
[...]
}
非常に可能ですが、Stock Doctrine Repositoryはこの方法では動作しません。
コンテキストに応じて、2つのオプションがあります。
リポジトリにカスタムメソッドを記述します。
class PostRepository extends EntityRepository
{
public function getPosts($id)
{
$qb = $this->createQueryBuilder('p');
$qb->join('p.platform', 'f')
->where($qb->expr()->eq('f.id', $id));
return $qb;
}
}
または、プラットフォームオブジェクトでデフォルトのgetterメソッドを使用します。
$posts = $platform->getPosts();
あなたは「興味深い部分に取り除いた」ので、この方法があるかどうかは明らかではありませんが、通常は
app/console doctrine:generate:entities
別の方法、IDを使用せずに少しオブジェクト指向/クリーナー:
public function getPosts(Platform $platform)
{
$qb = $this->createQueryBuilder("p")
->where(':platform MEMBER OF p.platforms')
->setParameters(array('platform' => $platform))
;
return $qb->getQuery()->getResult();
}
より良いメソッド名はfindPostsByPlatform
です
この質問は、BIDIRECTIONALが必要なManyToMany関係の問題のようです(現在はUNIDIRECTRIONALになっています)。 MappedByを使用して、双方向性を作成します。
実用的:
エンティティの1つはOWNING SIDE、もう1つはINVERSE SIDEです。この例では、Postという名前のエンティティが所有側であり、Platformという名前のエンティティが逆側です。
独自のセットアップ:
Class Post {
...
/**
* @ManyToMany(targetEntity="Platform")
* @JoinTable(name="map_post_platform",
* joinColumns={@JoinColumn(name="post_id", referencedColumnName="id")},
* inverseJoinColumns={@JoinColumn(name="platform_id", referencedColumnName="id", unique=true)} )
**/
protected $platforms;
...
public function Post() {
$this->platforms= new ArrayCollection();
}
...
public function assignToPlatform($platform) {
$this->platforms[] = $platform;
}
...
public function getPlatforms() {
return $this->platforms;
}
}
逆側のセットアップ:
Class Platform {
...
/**
* @ManyToMany(targetEntity="Post", mappedBy="platforms")
**/
protected $posts;
...
public function Platform() {
$this->posts= new ArrayCollection();
}
...
public function getPosts()
{
return $this->posts;
}
}
いずれかの側から始まるエンティティの配列を取得する例:
$post->getPlatforms();
$platform->getPosts();