Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

CourseManagementService.isEmpty(String courseSetEid) for example assumes that the String param is a eid for a CourseSet and the OOTB hibernate implementatio runs this HQL:

Code Block
from CourseSetCmImpl as cs where cs.eid=:eid and
        	(size(cs.canonicalCourses) > 0 or size(cs.courseOfferings) > 0)

...