php – 在doctrine 2 doc示例中,拥有方和反面是什么

在这个关联映射页面上,在manytomany部分有一个例子.但我不明白哪个实体(组或用户)是拥有方.

http://docs.doctrine-project.org/en/2.0.x/reference/association-mapping.html#many-to-many-bidirectional

我也把代码放在这里

<?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();
    }

    // ...
}

我这样读这个注释:
用户被映射为组,所以组是进行连接管理的实体,因此拥有方?

此外,我已经在文档中阅读过:

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注释时,用户将成为所有者.

But I don’t understand which entity (group or user) is the owning side

用户实体是所有者.您在用户中具有组的关系:

/**
 * @ManyToMany(targetEntity="Group",inversedBy="users")
 * @JoinTable(name="users_groups")
 */
private $groups;

看看上面,$groups var包含与此用户关联的所有组,但如果您注意到属性定义,$groups var具有与以前一样的mappedBy值(mappedBy =“groups”)的相同名称

/**
 * @ManyToMany(targetEntity="User",mappedBy="groups")
 */
private $users;

mappingBy是什么意思?

This option specifies the property name on the targetEntity that is the owning side of this relation.

相关文章

Hessian开源的远程通讯,采用二进制 RPC的协议,基于 HTTP 传输。可以实现PHP调用Java,Python,C#等多语...
初识Mongodb的一些总结,在Mac Os X下真实搭建mongodb环境,以及分享个Mongodb管理工具,学习期间一些总结...
边看边操作,这样才能记得牢,实践是检验真理的唯一标准.光看不练假把式,光练不看傻把式,边看边练真把式....
在php中,结果输出一共有两种方式:echo和print,下面将对两种方式做一个比较。 echo与print的区别: (...
在安装好wampServer后,一直没有使用phpMyAdmin,今天用了一下,phpMyAdmin显示错误:The mbstring exte...
变量是用于存储数据的容器,与代数相似,可以给变量赋予某个确定的值(例如:$x=3)或者是赋予其它的变...