Symfony 3 - 用于在表单中获取EntityType选项的本机查询

时间:2018-01-20 16:43:07

标签: php symfony symfony-3.4

我有一个表单,其中有一个字段连接到实体:

->add('category', EntityType::class, array(
                'class' => ProductCategory::class,
                'required' => true,
                'query_builder' => function(ProductCategoryRepository $repo) {
                    return $repo->createCategoryStructuredQuery();
                }
            ))

但是在回购中我必须使用以下查询:

SELECT c.* FROM product_category c order by coalesce(c.parentid, c.id), c.parentid is not null, c.name

Doctrine由于coalesce而抛出异常,并且在order子句中不为null,我在createCategoryStructuredQuery()中创建了一个本机查询:

public function createCategoryStructuredQuery() {
    $rsm = new ResultSetMapping();

    $rsm->addEntityResult('ProductBundle\Entity\ProductCategory', 'c');

    $nativeQuery = $this->getEntityManager()
            ->createNativeQuery(
                'SELECT c.* 
                FROM product_category c 
                order by coalesce(c.parentid, c.id), 
                      c.parentid is not null, 
                      c.name',
                      $rsm
            );
}

如何返回QueryBuilder实例以将其正确分配给表单字段?或者,如何使用查询构建器正确构建上述学说查询?

2 个答案:

答案 0 :(得分:2)

您可以直接在查询构建器中使用COALESCE。实际上,您只需将其添加到SELECT语句中,然后将其用于排序。您需要的是将此字段声明为HIDDEN,以便将其从最终结果中排除。

->add('category', EntityType::class, array(
    'class' => ProductCategory::class,
    'required' => true,
    'query_builder' => function(ProductCategoryRepository $repo) {
        return $repo->createQueryBuilder('pc')
            ->select('pc, COALESCE(pc.parentid, pc.id) as HIDDEN orderId, -pc.parentId AS HIDDEN inverseParentId')
            ->orderBy('orderId', 'ASC')
            ->addOrderBy('inverseParentId', 'DESC')
            ->addOrderBy('pc.name', 'ASC')
            ->getQuery()->getResult();
    }
));

答案 1 :(得分:0)

正如我可以看到的代码,Doctrine的例外只是一个开始。尽管它应该,你的函数不会返回任何值。其次,您必须在您创建的$ nativeQuery变量上执行getResult()方法。第三,即使你返回了getResult()方法的结果,它仍然不是一个queryBuilder对象(作为表单中的回调期望),而是一个数组。

为什么不留在回调函数中并返回:

return $repo->createQueryBuilder('c')
    // here build your query with qb functions, e.g. ->orderBy(arg1 [, arg2])