Doctrine2 QueryBuilder - 字段名称中的变量

时间:2012-10-24 16:36:16

标签: symfony doctrine-orm doctrine query-builder

我正在尝试将变量放入查询中的字段名称中,因此我有一个模式:

  id amazon - tesco - asda - happyshopper - 

  1   £5    - NULL  - NULL  -     £4.99
  2   NULL  - £2.99 - NULL  -     NULL

然后

$store = 'amazon'; 

$qb = $em->createQueryBuilder();
        $products = $qb->select('p')->from('MyBundle:Product', 'p')
        ->where('p.:store IS NOT NULL')
        ->setParameter('store', $store)
        ->add('orderBy', 'p.onSale DESC')
        ->setMaxResults(40)
        ->getQuery()
        ->getResult();

将返回第1行。

我为此做了什么:

->where('p.:store IS NOT NULL')
->setParameter('store', $store)

不正确且错误。

->where(':store IS NOT NULL')
->setParameter('store', $store)

不会出错,但不会应用商店过滤器。

1 个答案:

答案 0 :(得分:5)

这里的简短回答是手动将商店名称用于字符串:

->where("p.$store IS NOT NULL")

->where('p.' . $store . ' IS NOT NULL')

答案很长,你的数据库架构可以使用一些工作。例如,当您想要添加新商店时会发生什么?你要添加一个新列并重新编写整个代码吗?更好的解决方案是将“store”的概念分开,将其放在自己的表中,并将所有内容连接在一个不同的表中。像这样:

Product:
id | name | onSale
1  | foo  | 1
2  | bar  | 0

Store:
id | name    
1  | amazon
2  | tesco
3  | asda
4  | happyshopper

Price:
id | productId | storeId | price
1  | 1         | 1       | 5
2  | 1         | 4       | 4.99
3  | 2         | 2       | 2.99

正确配置表格和映射后,您的查询将变为:

$qb = $em->createQueryBuilder();
$products = $qb
    ->select('product')
    ->from('MyBundle:Price', 'price')
    ->innerJoin('price.product', 'product')
    ->innerJoin('price.store', 'store')
    ->where('store.name = :store')
    ->setParameter('store', $store)
    ->add('orderBy', 'product.onSale DESC')
    ->setMaxResults(40)
    ->getQuery()
    ->getResult();