Hi,
i try to create a join but the model could not be loaded:
Controller
use Vokuro\Models\Country;
use Vokuro\Models\Region;
$this->modelsManager->createBuilder()
->from("Country")
->join("Region")
->orderBy("Country.country")
->getQuery()
->execute();
thx