Skip to content

Commit c5fc4a6

Browse files
Update Orm/Xtensive.Orm/Sql/Dml/Expressions/SqlCollate.cs
Co-authored-by: Alexey Kulakov <alexey.kulakov@dataobjects.net>
1 parent a3821d6 commit c5fc4a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orm/Xtensive.Orm/Sql/Dml/Expressions/SqlCollate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public SqlExpression Operand {
3636

3737
public override void ReplaceWith(SqlExpression expression)
3838
{
39-
SqlCollate replacingExpression = ArgumentValidator.EnsureArgumentIs<SqlCollate>(expression);
39+
var replacingExpression = ArgumentValidator.EnsureArgumentIs<SqlCollate>(expression);
4040
operand = replacingExpression.Operand;
4141
collation = replacingExpression.Collation;
4242
}

0 commit comments

Comments
 (0)