我有以下实体:
/**
* @ORM\Entity
*/
class Product
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ORM\ManyToOne(targetEntity="Category", inversedBy="products")
* @ORM\JoinColumn(name="category_id", referencedColumnName="id")
*/
protected $category;
}
和:
/**
* @ORM\Entity
*/
class Category
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ORM\OneToMany(targetEntity="Product", mappedBy="category", fetch="EXTRA_LAZY")
*/
protected $products;
/**
* @ORM\Column(type="integer")
*/
protected $productCount = 0;
public function updateProductCount()
{
$this->productCount = $this->products->count();
}
}
我希望在productCount
更新/添加/删除其相关产品时更新类别字段。我已经创建了Category::updateProductCount()
执行此操作的方法,但不确定最佳方法。
有什么帮助吗?