diff --git a/Mindbox.Data.Linq/Mindbox.Data.Linq.csproj b/Mindbox.Data.Linq/Mindbox.Data.Linq.csproj
index fc5788e..df1aeb4 100644
--- a/Mindbox.Data.Linq/Mindbox.Data.Linq.csproj
+++ b/Mindbox.Data.Linq/Mindbox.Data.Linq.csproj
@@ -8,7 +8,7 @@
true
true
snupkg
- 10.8.1$(VersionTag)
+ 10.8.2$(VersionTag)
SYSLIB0003;SYSLIB0011
diff --git a/Mindbox.Data.Linq/SqlClient/Query/QueryConverter.cs b/Mindbox.Data.Linq/SqlClient/Query/QueryConverter.cs
index 557a3a2..0973c75 100644
--- a/Mindbox.Data.Linq/SqlClient/Query/QueryConverter.cs
+++ b/Mindbox.Data.Linq/SqlClient/Query/QueryConverter.cs
@@ -1793,8 +1793,9 @@ private static object FindArrayInClosure(object target, Type arrayType, int dept
if (item?.GetType() == arrayType) {
return item;
}
- if (item is Delegate nested && nested.Target != null) {
- var found = FindArrayInClosure(nested.Target, arrayType, depth + 1);
+ var searchTarget = item is Delegate nested ? nested.Target : item;
+ if (searchTarget != null) {
+ var found = FindArrayInClosure(searchTarget, arrayType, depth + 1);
if (found != null) {
return found;
}