我有两个实体类:房屋和汽车。
在 Entity House 类中我有方法:
<?php
namespace Acme\HouseBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* House
*/
class House {
//...
public function getRandomCar()
{
$em = $this->getDoctrine()->getManager();
$car = $em->getRepository('AcmeCarBundle:Car')->find(rand(0,100));
return $car->getName();
}
}
但我无法在我的 Entity House 课程中使用 Doctrine。我怎样才能做到?