我有这些实体:
第一:ProductCupMain -> 喜欢一个产品
<?php
namespace xxx\Security\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* xxx\Security\Entity\ProductCupMain
*
* @ORM\Table(name="product_cup_main")
* @ORM\Entity
*/
class ProductCupMain
{
/**
* @var integer $id
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $id;
/**
* @var string $name
*
* @ORM\Column(name="name", type="string", length=45, nullable=true)
*/
private $name;
/**
* @var string $image
*
* @ORM\Column(name="image", type="string", length=128, nullable=true)
*/
private $image;
/**
* @var string $pdf
*
* @ORM\Column(name="pdf", type="string", length=128, nullable=true)
*/
private $pdf;
/**
* @var ProductCategories
*
* @ORM\ManyToMany(targetEntity="ProductCategories", inversedBy="productCupMain")
* @ORM\JoinTable(name="product_cup_main_has_product_categories",
* joinColumns={
* @ORM\JoinColumn(name="product_cup_main_id", referencedColumnName="id")
* },
* inverseJoinColumns={
* @ORM\JoinColumn(name="product_categories_id", referencedColumnName="id")
* }
* )
*/
private $productCategories;
第二个:ProductCategories -> like Categories
<?php
namespace xxx\Security\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* xxx\Security\Entity\ProductCategories
*
* @ORM\Table(name="product_categories")
* @ORM\Entity
*/
class ProductCategories
{
/**
* @var integer $id
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $id;
/**
* @var string $name
*
* @ORM\Column(name="name", type="string", length=45, nullable=false)
*/
private $name;
/**
* @var string $image
*
* @ORM\Column(name="image", type="string", length=100, nullable=true)
*/
private $image;
/**
* @var string $shortname
*
* @ORM\Column(name="shortname", type="string", length=164, nullable=false)
*/
private $shortname;
/**
* @var integer $position
*
* @ORM\Column(name="position", type="integer", nullable=false)
*/
private $position;
/**
* @var ProductCupMain
*
* @ORM\ManyToMany(targetEntity="ProductCupMain", mappedBy="productCategories")
*/
private $productCupMain;
所以,我想在许多类别中保存许多产品。(ManyToMany 关系)我的问题是一个位置。产品在类别中有不同的位置。
我想保存关系上的位置,如下所示:
http://i.stack.imgur.com/Z0gzw.jpg
我需要一个方法,例如: getPositionInCategory($categoryId) 我可以在其中获得正确的位置。你能帮助我吗 ?
此外,我在这里发现了类似的问题,但我无法为我找到正确的解决方案。
编辑 1
@mbinette 的解决方案:我创建了第三个实体供参考。这样对吗 ?
//产品类别参考
<?php
namespace xxx\Security\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* xxx\Security\Entity\ProductCategoryReference
*
* @ORM\Table(name="product_cup_main_has_product_categories")
* @ORM\Entity
*/
class ProductCategoryReference
{
/**
* @ORM\ManyToOne(targetEntity="ProductCupMain", inversedBy="categoriesHavetheProduct")
*/
private $prductCupMain;
/**
* @ORM\ManyToOne(targetEntity="ProductCategories", inversedBy="productsInCategory")
*/
private $productsCategorie;
/**
* @ORM\Column(name="postionInCategorie", type="integer", length=164, nullable=false)
*/
private $postionInCategorie;
public function getProductCupMain()
{
return $this->prductCupMain;
}
public function setProductCupMain($prductCupMain)
{
$this->prductCupMain = $prductCupMain;
}
public function getProductsCategorie()
{
return $this->productsCategorie;
}
public function setProductsCategorie($productsCategorie)
{
$this->productsCategorie = $productsCategorie;
}
public function getPostionInCategorie()
{
return $this->productsCategorie;
}
public function setPostionInCategorie($postionInCategorie)
{
$this->postionInCategorie = $postionInCategorie;
}
}
但是产品实体和类别实体是什么?
产品实体:
/**
* @var CategoryHavetheProduct
*
* @OneToMany(targetEntity="ProductCategoryReference", mappedBy="productCupMain")
*
**/
private $categoriesHavetheProduct;
//Please show me the getter and setter methods
类别实体:
/**
* @var ProductsInCategory
*
* @OneToMany(targetEntity="ProductCategoryReference", mappedBy="productsCategorie")
*
**/
private $productsInCategory;
//Please show me the getter and setter methods