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 4368df2 commit 49e6f30Copy full SHA for 49e6f30
Extensions/Xtensive.Orm.BulkOperations/Internals/SetOperation.cs
@@ -1,4 +1,4 @@
1
-using System;
+using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Linq.Expressions;
@@ -140,7 +140,7 @@ private void AddConstantValue(AddValueContext addContext)
140
{
141
SqlTableColumn column = SqlDml.TableColumn(addContext.Statement.Table, addContext.Field.Column.Name);
142
SqlExpression value;
143
- object constant = FastExpression.Lambda(addContext.Lambda.Body, null).Compile().DynamicInvoke();
+ object constant = FastExpression.Lambda(addContext.Lambda.Body).Compile().DynamicInvoke();
144
if (constant==null)
145
value = SqlDml.Null;
146
else {
0 commit comments