Synchronization of two entities

0
Hello experts   I have two entities in my domain model, "Project" and "Project_data". All have the same structure except for the names. Information is added to "Project" by user operations. Is there any way to synchronize "Project" and "Project_data"?   That's all, thank you in advance.
asked
1 answers
2

Hi Pyoma,

You can use a ‘before commit ’  event handler, for this, you can put an event handler on project and then check, if there’s a project_data with the same values, if it’s there you can associate it, and if it’s not there you an commit it.

 

Let me know if you have any confusion,

Hope it helps!!

 

**EDITED**

 

answered