SaveMany for update multiple records at a same time in cakePHP not working
问题 I am facing problem with updating multiple record at a same time with saveMany, I have association like: Candidates hasMany CandidatesEmployer CandidatesEmployer belongsTo Candidates Model associations in Candidate.php: public $hasMany = array( 'CandidatesEmployer' => array( 'className' => 'CandidatesEmployer', 'foreignKey' => 'candidate_id' ) } here is the method in CandidatesController : public function jbseeker_empdetails() { $this->layout = 'front_common'; $Employers = $this->Candidate-