On this page of association mapping, there's an example in the manytomany section. But I don't understand which entity (group or user) is the owning side.
I've put the code here too
<?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();
}
// ...
}
Do I read this annotation like this: User is mappedBy groups so group is the entity that does the connection management, thus the owning side?
Also, I've read this in the docs:
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).
This lets me think that User would be the owning side as the JoinTable annotation is defined in that entity.
The
User
entity is the owner. You have the relation of groups in User:Look above,
$groups
var contains the all groups associated to this user, but If you notice the property definition,$groups
var has the same name ofmappedBy
value (mappedBy="groups
"), as you did:What does mappedBy mean?
Taken from the docs:
Now, I understand ManyToMany can be confusing some times.
For Many-To-Many associations you can choose which entity is the owning and which the inverse side. There is a very simple semantic rule to decide which side is more suitable to be the owning side from a developers perspective. You only have to ask yourself, which entity is responsible for the connection management and pick that as the owning side.
Take an example of two entities Article and Tag. Whenever you want to connect an Article to a Tag and vice-versa, it is mostly the Article that is responsible for this relation. Whenever you add a new article, you want to connect it with existing or new tags. Your createArticle form will probably support this notion and allow to specify the tags directly. This is why you should pick the Article as owning side, as it makes the code more understandable:
This allows to group the tag adding on the Article side of the association:
So, in short, whatever makes more sense to you. You choose the owning and the inverse side of the relationship. :)
Source: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/association-mapping.html