We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d25d07b commit ad19eceCopy full SHA for ad19ece
src/NHibernate/Util/ExpressionsHelper.cs
@@ -6,6 +6,7 @@
6
using System.Runtime.CompilerServices;
7
using NHibernate.Engine;
8
using NHibernate.Linq;
9
+using NHibernate.Linq.Clauses;
10
using NHibernate.Linq.Expressions;
11
using NHibernate.Linq.Functions;
12
using NHibernate.Linq.Visitors;
@@ -646,6 +647,11 @@ protected override Expression VisitQuerySourceReference(QuerySourceReferenceExpr
646
647
return base.Visit(joinClause.InnerSequence);
648
}
649
650
+ if (node.ReferencedQuerySource is NhOuterJoinClause outerJoinClause)
651
+ {
652
+ return base.Visit(outerJoinClause.JoinClause.InnerSequence);
653
+ }
654
+
655
// Not supported expression
656
_entityName = null;
657
return node;
0 commit comments