Skip to content

Commit fbf7484

Browse files
authored
Fix bug with TVP (#404)
1 parent b8fb238 commit fbf7484

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Extensions/Xtensive.Orm.BulkOperations/Internals/QueryOperation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ protected override int ExecuteInternal()
6868
var conditionConstant = CanUseTvp(ex.Arguments[0].Type)
6969
? AutoConditionConstant
7070
: ComplexConditionConstant;
71-
arguments.Insert(1, AutoConditionConstant);
71+
arguments.Insert(1, conditionConstant);
7272
ex = Expression.Call(WellKnownMembers.InMethod.MakeGenericMethod(methodInfo.GetGenericArguments()), arguments);
7373
}
7474
}

Version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33

44
<PropertyGroup>
5-
<DoVersion>7.2.188</DoVersion>
5+
<DoVersion>7.2.189</DoVersion>
66
<DoVersionSuffix>servicetitan</DoVersionSuffix>
77
</PropertyGroup>
88

0 commit comments

Comments
 (0)