我在名为Entity
但是我想将5个实体放在不同的文件夹中进行分组。
我有很多实体,所以他们混淆了。
有没有办法让我把它们放在名为Entity2
的文件夹中。
但我确实想坚持下去并在其他课程中使用它们。
我不想为那个
制作单独的Bundle答案 0 :(得分:3)
只需使用名称空间并指定表名:
<?php
namespace Comakai\MyBundle\Entity\Location;
use Doctrine\ORM\Mapping as ORM;
use Doctrine\Common\Collections\ArrayCollection;
use Symfony\Component\Validator\Constraints as Assert;
/**
* @ORM\Entity
* @ORM\Table(name="location_country")
*/
class Country
{
所以这个实体将在src/Comakai/MyBundle/Entity/Location/Country.php
我总是这么做!