I was used discriminator column in where clause like this:

//f = root entity
$qb = $this->createQueryBuilder('f');
$qb->add('where', 'f.format = \'image\' OR f.format = \'text\'');

I've got an error: "Message: [Semantical Error] line 0, col 73 near 'format = 'image'': Error: Class Entities\File\AbstractFile has no field or association named format"

How can i use discriminator column in where clause?

Thanks.

link|improve this question

73% accept rate
feedback

1 Answer

up vote 3 down vote accepted

I think that you should use INSTANCE OF

link|improve this answer
More specifically $db->andWhere('f INSTANCE OF Entity\File\Image') – gawpertron Nov 29 '11 at 15:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.