原则2 选择没有关联对象的实体对象



我似乎无法弄清楚这一点,尽管它应该是相当简单的事情。

我有图像实体和文章实体。许多文章可以使用相同的图像,但每篇文章只能有一个图像,因此它们被映射为 OneToMany<->ManyToOne。

现在,我只需要选择没有任何文章与之关联的图像。我该怎么做?

我试过了:

$repository->createQueryBuilder('i')
->select('i')
->where('count(i.articles) = NULL');

但它不起作用。我怎样才能做到这一点?

更新

我在 Type 类中使用它,并尝试仅使用未使用的实体创建实体字段,如果相关,这里是完整的函数代码:

public function buildForm(FormBuilderInterface $builder, array $options)
{
    $builder
        ->add('images', 'entity', array(
                'class' => 'BloggerBlogBundle:Image',
                'query_builder' =>
                    function(EntityRepository $er)
                    {
                        return $er->createQueryBuilder('i')->.........here goes query creation
                                                    },
            )
        )
        ;
}

如果需要,这里也是关联:

图像类:

/**
 * @ORMOneToMany(targetEntity="Blog", mappedBy="image")
 */
protected $articles;

博客类:

/**
 * @ORMManyToOne(targetEntity="Image", inversedBy="articles")
 */
protected $image;

试试这个:

$qb->createQueryBuilder();
->select('i');
->from('BloggerBlogBundle:Image', 'i')
->leftJoin('i.articles', 'a')
->where('a is NULL');

你不应该在那里使用count()函数,... = NULL需要更改为... is NULL才能使教义完成它的工作。

总:

$repository->createQueryBuilder('i')
    ->select('i')
    ->where('i.articles is NULL');

接受的答案不再有效 - 您必须在 where 表达式中添加.id

$qb->createQueryBuilder();
 ->select('i');
 ->from('BloggerBlogBundle:Image', 'i')
 ->leftJoin('i.articles', 'a')
 ->where('a.id is NULL');

取自https://stackoverflow.com/a/30034662/1358376

相关内容

  • 没有找到相关文章

最新更新