I want to get the Mongo Connection of a Model inside a Controller and use the native findOne or other Mongo Queries on my collection, is there any way to do that?
You can create a method that makes the internal _getCollection visible to the public:
_getCollection
class Users extends Phalcon\Mvc\Collection { public function getCollection() { return $this->getConnection()->selectCollection('users'); } }