Brug contain()
Copy-Paste fra manualen:
// In a controller or table method.
// As an option to find()
$query = $articles->find('all', ['contain' => ['Authors', 'Comments']]);
// As a method on the query object
$query = $articles->find('all');
$query->contain(['Authors', 'Comments']);
Læs manual før du springer ud i trial and error-drevet udvikling! Hvis du ville have lavet en af tutorials i manualen før, ville dette være klart. Så gør dem nu , vil de dække meget mere af det grundlæggende.