私は次のようなwhere句で識別子列を使用しました:
//f = root entity
$qb = $this->createQueryBuilder('f');
$qb->add('where', 'f.format = \'image\' OR f.format = \'text\'');
エラーが発生しました:「メッセージ:[Semantical Error] line 0、col 73 near'format ='image'':Error:Class Entities \ File \ AbstractFile has no fieldorassociationという名前のformat」
where句で識別子列を使用するにはどうすればよいですか?
ありがとう。