我有两个实体(物品和产品)。
一件商品只有一件商品。 一种产品可能有0或N项。
当我创建一个新项目时,除了product_id为null之外,一切都是正确的,但在开发环境中,product_id是正确的。
class Item{
/**
* @var integer
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
protected $id;
/**
* @ORM\ManyToOne(targetEntity="Products", inversedBy="item", cascade={"persist"})
* @ORM\JoinColumn(name="product_id", referencedColumnName="product_id", onDelete="cascade")
* @var My\WebBundle\Entity\Products
*/
protected $products;
/**
* Get Id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set products
*
* @param My\WebBundle\Entity\Products $products
*/
public function setProducts(\My\WebBundle\Entity\Products $products)
{
$this->products = $products;
return $this;
}
/**
* get products
*
* @return My\WebBundle\Entity\Products
*/
public function getProducts()
{
return $this->products;
}
}
Class Product
class Products
{
/**
* @var integer
*
* @ORM\Column(name="product_id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
protected $productId;
/**
* @ORM\OneToMany(targetEntity="Item", mappedBy="products", cascade={"persist", "remove"})
*/
protected $item;
/**
* Get productId
*
* @return integer
*/
public function getProductId()
{
return $this->productId;
}
public function addItem(\My\WebBundle\Entity\Item $item)
{
$this->item[] = $item;
$item->setProducts($this);
return $this;
}
/**
* Get item
*
* @return Doctrine\Common\Collections\Collection
*/
public function getItem()
{
return $this->item;
}
}
我的问题是这个,当我创建这个项目时我使用:
$p = $em->getRepository('MyWebBundle:Products')->findOneByCode($code);
$item->setProducts($p);
在我的数据库中,在Item表中,product_id为null,但如果我在dev环境中执行此操作,则product_id是正确的。
有人有任何想法吗? 提前谢谢。
--- ---编辑 我有一个像这样的简单控制器:
$em = $this->getDoctrine()->getManager();
$item = new Item();
$item->setName($name);
$p = $em->getRepository('MyWebBundle:Products')->findOneByCode($product);
$item->setProducts($p);
$em->persist($item);
$em->flush()