dongtao9158 2014-10-21 17:39
浏览 70

如何在与Doctrine 2的manyToMany关联中多次添加相同的实体?

In my Badges Entity, I have this manytomany association:

<?php

class Badges
{
    /**
     * @var integer
     *
     * @ORM\Column(name="id", type="integer", nullable=false, unique=true)
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="IDENTITY")
     */
    private $id;


    /**
     * Unidirectional - Many users have Many new Matches (OWNING SIDE)
     *
     * @var \Doctrine\Common\Collections\Collection
     *
     * @ORM\ManyToMany(targetEntity="Entity\Event", cascade={"persist"})
     */
    private $match;
}

Which takes an event and associate it to this badge. Many badges can have many events. That's ok.

Now my problem is that a Badge can have several time the same event. And doctrine 2 Does NOT like that and throw out an error. Something like "This relation (Badge_id - Event_id ) already exist.

How do I fix that ?

Many thanks

  • 写回答

1条回答 默认 最新

  • doolo00026 2014-10-21 19:33
    关注

    You can add to your relationship one more attribute count that will store number of duplicating pairs. And if record is already exist you can just increment count instead of trying to insert new row.

    To define relationship with an attribute in Doctrine you need to define entity in the middle between your Badge and Event entities:

      +---------+          +---------+   
      |         |          |         |   
      |  Badge  |          |  Event  |   
      |         |          |         |   
      +--+------+          +------+--+   
         1                        1      
         |                        |      
         |   +---------------+    |      
         |   |               |    |      
         +-N-+  Badge_Event  +-N--+      
             |               |           
             +---------------+         
    

    In Badge_Event entity you can define your new attribute count.

    评论

报告相同问题?

悬赏问题

  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改
  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法