We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ab564a commit 52cab85Copy full SHA for 52cab85
1 file changed
Orm/Xtensive.Orm/Sql/Dml/Expressions/SqlCustomFunctionCall.cs
@@ -31,7 +31,7 @@ public override void ReplaceWith(SqlExpression expression)
31
internal override object Clone(SqlNodeCloneContext context)
32
{
33
if (!context.NodeMapping.TryGetValue(this, out var clone)) {
34
- context.NodeMapping[this] = clone= new SqlCustomFunctionCall(FunctionType, Arguments.Select(o => (SqlExpression) o.Clone(context)).ToArray(Arguments.Count));
+ context.NodeMapping[this] = clone = new SqlCustomFunctionCall(FunctionType, Arguments.Select(o => (SqlExpression) o.Clone(context)).ToArray(Arguments.Count));
35
}
36
return clone;
37
0 commit comments