duanji7182 2015-06-16 05:52
浏览 33
已采纳

Doctrine实体和Zf2模块依赖

I have 2 modules.

Config with ConfigEntity and Reporting with ReportingEntity

Those entities have a oneToManyRelation:

class Config
{
    public function __construct()
    {
        $this->reportings = new ArrayCollection();
    }

    /**
     * @ORM\OneToMany(targetEntity="Reporting\Entity\ConfigReporting",
     * mappedBy="config", cascade={"persist"}, orphanRemoval=true)
     */
    protected $reportings;
}

class ConfigReporting
{
    /**
     * @var int|null
     * @ORM\ManyToOne(targetEntity="Config\Entity\Config", inversedBy="reportings")
     * @ORM\JoinColumn(name="config", referencedColumnName="idConfig", onDelete="CASCADE")
     */
    protected $config;

}

My module Reporting depends on Config's module to work. But with this doctrine's mapping, do i have a circular dependancy ?

If yes, do i have to declare the Reporting entity into Config module ?

  • 写回答

1条回答 默认 最新

  • duanchendu69495 2015-06-17 01:03
    关注

    This should not be a problem.

    Did you try to setup the classes like you show? Did you run into any problems?

    UPDATE

    You can change your mapping to Unidirectional. Then you can turn of your Reporting module without problems. The disadvantage is that your Config entity will not be aware of the association...

    class Config
    {
        public function __construct()
        {
    
        }
    }
    
    class ConfigReporting
    {
        /**
         * Unidirectional mapping owning side.
         *
         * @var int|null
         * @ORM\ManyToOne(targetEntity="Config\Entity\Config")
         * @ORM\JoinColumn(name="config", referencedColumnName="idConfig", onDelete="CASCADE")
         */
        protected $config;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部