I have the following query, where the joined table is in a different namespace. I get an error message that "Base table or view not found" for the second namespace (App\Models\Site), and its table is referenced as if it is in the first namepace (App\Models\Common): "Table 'common.owner_assessment' doesn't exist".
Is the problem that Phalcon does not support this, or am I doing something wrong?
$data = $model->getModelsManager()->createBuilder()
->addFrom('App\Models\Common\Assessment', 'a')
->join('App\Models\Site\OwnerAssessment', NULL, 'oa')
->where("a.site_id = :sid: AND oa.person_id=17")
->orderBy('a.name')
->getQuery()
->execute(['sid' => $id])
->toArray();