アソシエーションマッピングのこのページでは、manytomanyセクションに例があります。しかし、どちらのエンティティ(グループまたはユーザー)が所有側であるかはわかりません。
ここにもコードを入れました
<?php
/** @Entity */
class User
{
// ...
/**
* @ManyToMany(targetEntity="Group", inversedBy="users")
* @JoinTable(name="users_groups")
*/
private $groups;
public function __construct() {
$this->groups = new \Doctrine\Common\Collections\ArrayCollection();
}
// ...
}
/** @Entity */
class Group
{
// ...
/**
* @ManyToMany(targetEntity="User", mappedBy="groups")
*/
private $users;
public function __construct() {
$this->users = new \Doctrine\Common\Collections\ArrayCollection();
}
// ...
}
この注釈を次のように読みますか?ユーザーはmappedByグループであるため、グループは接続管理を行うエンティティであり、所有者側ですか?
また、私はドキュメントでこれを読みました:
For ManyToMany bidirectional relationships either side may be the owning side (the side that defines the @JoinTable and/or does not make use of the mappedBy attribute, thus using a default join table).
これにより、JoinTableアノテーションがそのエンティティで定義されているため、Userが所有者になると思います。