i have the following two entities:
1- PlayList:
@OneToMany(fetch = FetchType.EAGER, mappedBy = \"playlist\", orphanRemoval = true, c
You need to remove association on the mapping object:
playList.getPlaylistadMaps().setPlayList(null); session.delete(playList);