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 8067ede commit 1af577aCopy full SHA for 1af577a
src/NHibernate/Linq/IntermediateHqlTree.cs
@@ -110,7 +110,7 @@ public void AddDistinctRootOperator()
110
if (!_hasDistinctRootOperator)
111
{
112
Expression<Func<IEnumerable<object>, IList>> x =
113
- l => DistinctRootEntityResultTransformer.Instance.TransformList(l.ToList());
+ l => new DistinctRootEntityResultTransformer().TransformList(l.ToList());
114
115
_listTransformers.Add(x);
116
_hasDistinctRootOperator = true;
0 commit comments