Skip to content

Commit 019a82d

Browse files
committed
Add HqlTreeBuilder.From overload that accepts HqlJoin
Fixes #1838
1 parent 233c3b4 commit 019a82d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/NHibernate/Hql/Ast/HqlTreeBuilder.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,11 @@ public HqlSelectFrom SelectFrom(HqlFrom @from)
7474
return new HqlSelectFrom(_factory, @from);
7575
}
7676

77+
public HqlFrom From(HqlJoin join)
78+
{
79+
return new HqlFrom(_factory, join);
80+
}
81+
7782
public HqlFrom From(HqlRange range)
7883
{
7984
return new HqlFrom(_factory, range);

0 commit comments

Comments
 (0)