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

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -