'productFeed.id as id',
'productFeed.name as name',
'productFeed.active as active',
'productFeed.fileName as fileName',
'productFeed.countArticles as countArticles',
'productFeed.hash as hash',
'productFeed.lastExport as lastExport',
] );
$builder->
from(ProductFeed::
class, 'productFeed'
);
if (!
empty($orderBy)) { $builder->
addOrderBy($orderBy);
} return $builder;
} /**
* Returns an instance of the \Doctrine\ORM\Query object which select a list of active
* product feeds.
*
* @return Query<ProductFeed>
*/