1

我在尝试使用 Doctrine 2 连接两个表时遇到了一些问题。当我尝试向表中添加新项目时,我收到错误消息:

通过未配置为级联持久操作的关系找到新实体:@。显式持久化新实体或在关系上配置级联持久化操作。

当我尝试更新表中的一行时,出现错误:

给定的实体没有身份。

我正在尝试将获胜者实体事件 id 加入事件的 id,以便我可以收集有关事件的数据以供查看。我挑衅地从更新表单中返回了一个 id,但它似乎不允许我更新它。

更新: 所以玩了一些东西,当我添加 cascade="{persist}" 选项时,我得到一个类未找到错误,删除它并添加完整的命名空间导致它声称实体不存在......

<?php

namespace ZC\Entity;

/**
 * ZC\Entity\Winner
 *
 * @Table(name="winner")
 * @Entity(repositoryClass="ZC\Entity\Repository\Winner")
 */

class Winner
{

    /**
     * @var integer $id
     *
     * @Column(name="id", type="integer", nullable=false, unique=false, precision=0, scale=0)
     * @Id
     * @GeneratedValue(strategy="AUTO")
     */
    protected $id;

    /**
     * @var string $copy
     *
     * @Column(name="copy", type="text", length="", unique=false, nullable=true, precision=0, scale=0)
     */
    protected $copy;

    /**
     * @var string $url
     *
     * @Column(name="url", type="string", length="255", unique=false, nullable=true, precision=0, scale=0)
     */
    protected $url;

    /**
     *
     * @ManyToOne(targetEntity="Events")
     * @JoinColumns=({
     *  @JoinColumn(name="event", referencedColumnName="id")
     * })
     *
     */
    protected $event;


    /**
     * __get function.
     * 
     * @access protected
     * @param mixed $property
     * @return void
     */
    public function __get($property) {
        return $this->$property;
    }

    /**
     * __set function.
     * 
     * @access protected
     * @param mixed $property
     * @param mixed $value
     * @return void
     */
    public function __set($property, $value) {
        $this->$property = $value;
    } 

}



<?php

namespace ZC\Entity;

/**
 * ZC\Entity\Events
 *
 * @Table(name="events")
 * @Entity(repositoryClass="ZC\Entity\Repository\Events")
 */

class Events
{

    /**
     * @var integer $id
     *
     * @Column(name="id", type="integer", nullable=false, unique=false, precision=0, scale=0)
     * @Id
     * @GeneratedValue(strategy="AUTO")
     */
    protected $id;

    /**
     * @var string $title
     *
     * @Column(name="title", type="string", length="255", unique=false, nullable=false, precision=0, scale=0)
     */
    protected $title;

    /**
     * @var string $description
     *
     * @Column(name="description", type="text", length="", unique=false, nullable=true, precision=0, scale=0)
     */
    protected $description;

    /**
     * @var string $status
     *
     * @Column(name="status", type="smallint", length="1", unique=false, nullable=false, precision=0, scale=0)
     */
    protected $status = 0;

    /**
     * @var string $date
     *
     * @Column(name="date", type="string", length="255", unique=false, nullable=false, precision=0, scale=0)
     */
    protected $date;

    /**
     * @var string $lang
     *
     * @Column(name="lang", type="string", length="255", unique=false, nullable=false, precision=0, scale=0)
     */
    protected $lang;


    /**
     * __get function.
     * 
     * @access protected
     * @param mixed $property
     * @return void
     */
    public function __get($property) {
        return $this->$property;
    }

    /**
     * __set function.
     * 
     * @access protected
     * @param mixed $property
     * @param mixed $value
     * @return void
     */
    public function __set($property, $value) {
        $this->$property = $value;
    } 

}
4

1 回答 1

1

使用cascade={"persist"}

/**
 *
 * @ManyToOne(targetEntity="Acme\Bundle\AcmeBundle\Entity\Events", cascade={"persist"})
 * @JoinColumns=({
 *  @JoinColumn(name="event", referencedColumnName="id")
 * })
 *
 */
protected $event;
于 2012-09-05T16:34:33.690 回答