ON clause with Hibernate Query interface -
i getting hibernatequeryexception,when use on clause left outer join.
can suggest me cause.
regards,
raj
hql doesn't support ... join ... on ...
syntax, can join
on defined relationships between entities (from foo foo join foo.bars bar
).
if need join
on arbitrary condition, can use old-fashioned form from a, b b a.x = b.y
(though can't make outer join way). otherwise have use native sql query.
see also:
Comments
Post a Comment