従業員と複合体は多対多の関係にあります。ベイク コンソールを使用して、従業員と複合体テーブルのモデル、コントローラーを生成しました。私の質問:
2 番目の質問: -この 3 つのテーブルにデータを保存するにはどうすればよいですか。私のアプリでは、 Complex ごとに従業員を保存する必要があります。
// Employees Controller
public function addEmpPerComplex($id_complex){
$emp = $this->Employees->newEntity();
if ($this->request->is('post')) {
$employee = $this->Employees->patchEntity($employee, $this->request->data, ['associated'=>['Complexes._joinData']] );
//here I need to insert the record that contains the employee data in Employees Table
// then I need to insert in "complexes_employees" the ID of Complex sended in parametre of this function and the ID of the new Employee
私を助けてくれてありがとう