Repository
一、在实体类中添加 repository 类的声明:
// src/DemoBundle/Entities/Product.php
<?php
namespace DemoBundle\Entities;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* @ORM\Table(name="products")
* @ORM\Entity(repositoryClass="DemoBundle\Repositories\ProductRepository")
*/
class Product
{
//...
}二、通过在 repository 类中声明关联的实体
Last updated