1

我有以下自定义查询。我知道它很简单,所以它也可以用作 DQL,但我也有更复杂的。但我想知道方法,即使是更复杂的查询如何做到这一点。

select j.*
from `shop`.`jobs` j
-- 2 joins
where j.`active` = true 
order by j.`priority` desc, j.`created` asc 

当然有Job模型。

我想要的是:

Job 类的实例数组,使用原始 sql。像这样:

array (6) {
    [0] => Job#12 (8) {
      ...
    }
    [1] => Job#13 (8) {
      ...
    }
    [2] => Job#14 (8) {
      ...
    }
    [3] => Job#16 (8) {
      ...
    }
    [4] => Job#17 (8) {
      ...
    }
    [5] => Job#18 (8( {
      ...
    }
}
4

1 回答 1

3

找到了!通过EntityManager 的createNativeQuery 函数。对于 RSM,我需要使用 ResultSetMappingBuilder 类。

$rsm = new \Doctrine\ORM\Query\ResultSetMappingBuilder($this->getEntitiyManager());
$rsm->addRootEntityFromClassMetadata(\Path\To\Model::class, 'alias');

$nativeQuery = $this->getEntitiyManager()->createNativeQuery('-- query--', $rsm);

$nativeQuery->getResult();
于 2018-09-03T06:06:53.630 回答