我有一种情况,我需要在使用 Hibernate Criteria 时在 ON 子句中应用另一个 Condition。
我正在编写我的 MySQL,但我无法找到任何合理的方式在 Hibernate Criteria 中转换它。
SELECT s.StudentID AS StudentID, sc.CourseID AS CourseID
FROM Student s
LEFT JOIN StudentCourse sc ON
(sc.StudentID = s.StudentID AND sc.CourseID = 'XXX')
我在这个查询中做什么
我希望所有学生列表都注册或不注册指定课程。
如果我有四个学生并且只有一个学生参加了一门课程,那么结果应该是
StudentID, CourseID
1 NULL
2 XXX
3 NULL
4 NULL
到目前为止,我所做的是
Criteria cr = getSession().createCriteria(Student.class);
cr.createAlias("studentCourse", "sc", CriteriaSpecification.LEFT_JOIN)
.add(Restrictions.eq("sc.CourseID", 'XXX'));
通过运行此语句,我得到与以下查询等效的查询
SELECT *
FROM Student s
LEFT JOIN StudentCourse sc ON (sc.StudentID = s.StudentID)
WHERE sc.CourseID = 'XXX'
现在这个查询不符合查询的目的。它只返回 CourseID 不为空的一行。
编辑
休眠版本 3.4.0GA