db->getQueryBuilder(); // ToDo - get the count $qb->select($qb->createFunction('COUNT()')) ->from($this->getTableName()) ->where( $qb->expr()->eq('folderId', $qb->createNamedParameter($folderId)) ); return $qb->getSQL(); } public function find(int $id, string $userId) { $qb = $this->db->getQueryBuilder(); $qb->select('*') ->from($this->getTableName()) ->where( $qb->expr()->eq('id', $qb->createNamedParameter($id)) )->andWhere( $qb->expr()->eq('user_id', $qb->createNamedParameter($userId)) ); return $this->findEntity($qb); } public function findAll(string $userId) { $qb = $this->db->getQueryBuilder(); $qb->select('*') ->from($this->getTableName()) ->where( $qb->expr()->eq('user_id', $qb->createNamedParameter($userId)) ); return $this->findEntities($qb); } }