| Author |
One-to-Many association delete
|
Saathvik Reddy
Ranch Hand
Joined: Jun 03, 2005
Posts: 228
|
|
Hi,
I have a Parent child relationship between two entities. I have cascade = all JPA property between these two entities.
I am doing parent.getChildren().add(child) to add children to the parent class and saving the parent entity which works great.
But, when i do parent.getChildren().remove(child) and save the parent the child record is not removed. What should i do to remove the child?
Thanks,
|
 |
Bosun Bello
Ranch Hand
Joined: Nov 06, 2000
Posts: 1506
|
|
|
You can try delete on the child first. So try: session.delete(child)
|
Bosun (SCJP, SCWCD)
So much trouble in the world -- Bob Marley
|
 |
 |
|
|
subject: One-to-Many association delete
|
|
|