guagay_wk
guagay_wk

Reputation: 28030

How to copy a record plus its associated records to another similar table pair in Cakephp?

I have 2 tables with a one-to-many relationship. I have another 2 similar tables with the same relationship in the same database.

How to copy a record plus its associated records from one table pair to another table pair in the same database in Cakephp?

I am using Cakephp 2.4.5

Thank you very much.

Upvotes: 1

Views: 149

Answers (1)

Arun Jain
Arun Jain

Reputation: 5464

This link might help you.

You have to use 'deep' => true option with saveAll() method while saving associated models details.

Upvotes: 1

Related Questions