I want to perform a LEFT OUTER JOIN between two tables using the Criteria API. All I could find in the Hibernate documentation is this method:
Criteria crite
Sdavids answer's API is deprecated now. Its updated version is
deprecated
....createAlias("employee", "emp", JoinType.LEFT_OUTER_JOIN)