我已经使用查询生成器构建了一个正确的工作查询。
但是现在,有一个条件,一个方法(负责动态地将一些表添加到查询中)必须向查询中添加一个列。
我尝试了以下方法(它要复杂得多,但几乎相同):
$querybuilder->select('EntityA.Property')
->from ('EntityA');
// here is happening some awesome stuff... ;-)
// Now i have to add the Table, and The column
$querybuilder->innerJoin('EntityB'); // this is working
$querybuilder->add('select', 'EntityB.Property'); // overwrites my columnlist
// $querybuilder->select('EntityB.Property'); // also overwrites my columnlist
提前致谢