Skip to content

Commit 73e0e80

Browse files
Update Orm/Xtensive.Orm/Sql/Dml/Expressions/SqlBetween.cs
Co-authored-by: Alexey Kulakov <alexey.kulakov@dataobjects.net>
1 parent 70a9028 commit 73e0e80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public SqlExpression Expression
4646

4747
public override void ReplaceWith(SqlExpression expression)
4848
{
49-
SqlBetween replacingExpression = ArgumentValidator.EnsureArgumentIs<SqlBetween>(expression);
49+
var replacingExpression = ArgumentValidator.EnsureArgumentIs<SqlBetween>(expression);
5050
NodeType = replacingExpression.NodeType;
5151
left = replacingExpression.Left;
5252
right = replacingExpression.Right;

0 commit comments

Comments
 (0)