i have 2 models related to each other.
class AccountModel extends AppModel {
public $name = 'Account';
public $belongsTo = array(
'User' => array(
'className' => 'User',
'foreignKey' => 'user_id',
),
);
}
class UserModel extends AppModel {
public $name = 'User';
public $hasMany = array(
'Account' => array(
'className' => 'Account',
'foreignKey' => 'user_id',
),
);
}
tables: accounts -id -user_id -other fields...
users -id -other fields...
requesting data from one model only returns data of this, but no related data. i want to request model User with id and returning all User-data and related Account-data. same with requesting Account-model with one param, not account_id or user_id, and returning all Account-data and related User-data.
$User = $this->Account->findByField($param);
only returns array('Account' => array(...)) and
$User = $this->User->findById($id);
only returns array('User' => array(...)) but no request returns array('User' => array(...), 'Account' => array(..))
How will i get all related data?
Greetings m.

saveAll($data). That is something about For saving a record along with its related records which is just what you want. Good Luck! – tech_me Jan 10 at 15:15