来自多个表的Symfony EasyAdminBundle视图

时间:2017-06-10 18:44:08

标签: php symfony bundle symfony2-easyadmin

我需要使用来自多个表的数据创建视图(列表)。我使用EasyAdminBundle,我有:

 * @ORM\Table(name="orders")
class orderes{
/**
 * @var int
 *
 * @ORM\Column(name="order_id", type="integer")
 * @ORM\Id
 * @ORM\GeneratedValue(strategy="AUTO")
 */
private $id;

/**
 * Get id
 *
 * @return int
 */
public function getId()
{
    return $this->id;
}

/**
 * @ORM\Column(name="datetime", type="string")
 */
private $date;

public function getDate()
{
    return $this->date;
}

/**
 * HERE I NEED GET DATA FROM ANOTHER TABLE
 */
private $test;

public function getTest()
{
    return $this->test;
}

我可以在同一个文件中引用另一个表吗? 感谢帮助。

0 个答案:

没有答案