I have 2 entites: Members and Role.
Member has a many to many relationship with Role.
this relationship is tested and works.
When I try to clean a member of all it's roles i.e by doing this:
member.roles.destroyAll(null, function()
{
persistence.add(member);
persistence.flush();
});
It does not remove the entities in the relationship table (Member_roles_Role in this case. I still see them in the database.
Has this function been implemented? thanks