I have compound query
$query = $this->getDi()->get('modelsManager')->createBuilder()
->columns(...)
->from(...)
->join(...)
->join(...)
...
->where(...)
->orderBy(...)
->limit(12)
...
How count all rows without limit?
I have compound query
$query = $this->getDi()->get('modelsManager')->createBuilder()
->columns(...)
->from(...)
->join(...)
->join(...)
...
->where(...)
->orderBy(...)
->limit(12)
...
How count all rows without limit?