我使用APYDataGridBundle生成数据表。
我有一个具有关系的人员实体(1个健身房可以有更多的人):
/**
* @ORM\ManyToOne(targetEntity="App\Entity\Gym", inversedBy="persons")
*/
private $gym;
我在控制器中生成一个包含人员列表的网格:
public function indexAction(Grid $grid)
{
// Creates a simple grid based on your entity (ORM)
$source = new Entity(Person::class);
$grid->setSource($source);
return $grid->getGridResponse('Person/index.html.twig');
它显示了包含所有非关系列的网格,但gym列没有,因为存在关系。
我在doc中找不到解决方案:https://github.com/APY/APYDataGridBundle/blob/master/Resources/doc/summary.md
你能帮帮我吗?
1条答案
按热度按时间mzsu5hc01#
个人实体: