可能吗?
目前我正在使用类似的东西:
class ReportRepository extends EntityRepository
{
public function getActiveReportsQuery()
{
return $this->_em->createQueryBuilder()
->select('report')
->from('ClearcodeTransparenBundle:Report', 'report')
->where('report.status = :status')
->setParameter('status', Report::STATUS_OPEN)
;
}
}
但我不能将此构造与计数一起使用。
那么,是否有来自 propel1 的 filterbyIsSomething 的直接等价物?