I have a one-to-many association from Institution -> Course where an institution can handle multiple courses. For this use case consider a course can only belong to one institution.

@Entity 
Institution {
@Id
long id;
@JoinTable(name = "INSTITUTION_COURSES", joinColumns = @JoinColumn(name = "INSTITUTION_ID"), inverseJoinColumns = @JoinColumn(name = "COURSE_ID"))
Set<Course> coursesOffered;
}

@Entity
Course{
@Id
long id;
@Column
String name;
}

And their map is stored in seperate table

How can I delete a course using HQL or Hibernate criteria without fetching the Institution object and the associated collection such that the corresponding rows in the mapping table are also removed.

1

There are 1 best solutions below

3
On

Are you doing something like this inside a transactional context? ...

Institution institution = institutionDAO.findById(institutionId, false);
institution.getCourses().remove(course);

institution = institutionDAO.mergeState(institution);