We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc8d901 commit 7b9547fCopy full SHA for 7b9547f
1 file changed
Orm/Xtensive.Orm/Sql/Dml/Expressions/SqlFunctionCall.cs
@@ -27,8 +27,7 @@ public override void ReplaceWith(SqlExpression expression)
27
28
internal override SqlFunctionCall Clone(SqlNodeCloneContext context) =>
29
context.GetOrAdd(this, static (t, c) =>
30
- new SqlFunctionCall(t.FunctionType, Arguments.Select(o => (SqlExpression) o.Clone(context)).ToArray(Arguments.Count));
31
- );
+ new SqlFunctionCall(t.FunctionType, t.Arguments.Select(o => o.Clone(c)).ToArray(t.Arguments.Count)));
32
33
public override void AcceptVisitor(ISqlVisitor visitor) => visitor.Visit(this);
34
0 commit comments