Symfony2和Doctrine,Column不能为null与OneToOne关系 [英] Symfony2 and Doctrine, Column cannot be null with OneToOne relationships

查看:113
本文介绍了Symfony2和Doctrine,Column不能为null与OneToOne关系的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是一个实体( EDITED:完整的文件内容

// Eve\MoonBundle\Entity\MoonMaterial.php

namespace Eve\MoonBundle\Entity;

use Doctrine\ORM\Mapping as ORM;

//use Doctrine\Common\Collections\ArrayCollection;

/**
 * @ORM\Table(name="_moon_material")
 * @ORM\Entity()
 */
class MoonMaterial
{

    public function __construct()
    {
        //$this->invTypes_byTypeID = new ArrayCollection();
    }

    // relations start

    /**
     * @ORM\OneToOne(targetEntity="Eve\DumpBundle\Entity\invTypes")
     * @ORM\JoinColumn(name="typeID", referencedColumnName="typeID")
     */
    private $invTypes_byTypeID;

    public function get_invTypes_byTypeID()
    {
        return $this->invTypes_byTypeID;
    }

    // relations end

    /**
     * @ORM\Column(name="userID", type="integer", nullable=false)
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="NONE")
     */
    private $userID;

    /**
     * @ORM\Column(name="moonID", type="integer", nullable=false)
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="NONE")
     */
    private $moonID;

    /**
     * @ORM\Column(name="typeID", type="integer", nullable=false)
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="NONE")
     */
    private $typeID;

    /**
     * Set userID
     *
     * @param integer $userID
     * @return MoonMaterial
     */
    public function setUserID($userID)
    {
        $this->userID = $userID;

        return $this;
    }

    /**
     * Get userID
     *
     * @return integer
     */
    public function getUserID()
    {
        return $this->userID;
    }

    /**
     * Set moonID
     *
     * @param integer $moonID
     * @return MoonMaterial
     */
    public function setMoonID($moonID)
    {
        $this->moonID = $moonID;

        return $this;
    }

    /**
     * Get moonID
     *
     * @return integer
     */
    public function getMoonID()
    {
        return $this->moonID;
    }

    /**
     * Set typeID
     *
     * @param integer $typeID
     * @return MoonMaterial
     */
    public function setTypeID($typeID)
    {
        $this->typeID = $typeID;

        return $this;
    }

    /**
     * Get typeID
     *
     * @return integer
     */
    public function getTypeID()
    {
        return $this->typeID;
    }

}

控制器中的代码( EDITED

// Eve\MoonBundle\Controller\IndexController.php
namespace Eve\MoonBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Eve\MoonBundle\Entity\MoonMaterial;

class IndexController extends Controller
{

    public function defaultAction($moonName)
    {
        // ...
        $dc = $this->getDoctrine();
        $form = $this
            ->createFormBuilder()
            ->add('typeID', 'choice', $choiceSettings)
            ->getForm();

        if ($this->getRequest()->isMethod('post'))
        {
            $form->bind($this->getRequest());
            {
                $data = $form->getData();
                $typeID = $data['typeID'];

                if (is_int($typeID))
                {
                    $em = $dc->getEntityManager();
                    $mm = $em->getRepository('EveMoonBundle:MoonMaterial');

                    $result = $mm->findOneBy(array(
                            'userID' => $this->getUser()->getID(),
                            'typeID' => $typeID,
                            'moonID' => $moon->getItemID()));

                    if ($result)
                    {
                        $em->remove($result);
                        $em->flush();
                    }

                    $moonMaterial = new MoonMaterial();
                    $moonMaterial
                        ->setUserID($this->getUser()->getID())
                        ->setTypeID($typeID)
                        ->setMoonID($moon->getItemID());


                    $em->persist($moonMaterial);
                    $em->flush();
                }
            }
        }

        $twig = 'EveMoonBundle:Index:default.html.twig';
        return $this->render($twig, array(
                'formAddMoonMaterial' => $form->createView()));
    }

}

当我尝试这个,我得到错误

when i try this, i get error

An exception occurred while executing 'INSERT INTO _moon_material (userID, moonID, typeID) VALUES (?, ?, ?)' with params {"1":38,"2":40001583,"3":null}:

SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'typeID' cannot be null 

但是当我评论OneToOne(上面的代码)关系时,它的工作正常,所以主要的麻烦在于描述OneToOne关系。 .. pls帮助处理它

but when i comment the OneToOne (code above) relationship it work correctly, so main trouble is in description OneToOne relationship... pls help to deal with it

我想要的,我想要重写条目,如果存在于_moon_material或只是写它,如果不是

what i want, i want rewrite entry if exist in table "_moon_material" or simply write it if not

ps:我只需要这个关系read(通过id连接名称)

ps: i need that relation only for "read" (join name by id)

推荐答案

我不知道为什么,我不能做单向关系,所以我通过向invTypes表注释添加一些代码来双向解决

i don't know why, i can't do unidirectional relations, so i solved it by bidirectional by adding some code to invTypes table annotation

这篇关于Symfony2和Doctrine,Column不能为null与OneToOne关系的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆