Skip to content

Commit 0c8c080

Browse files
committed
var instead of explicity type
1 parent 03027b6 commit 0c8c080

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public Sequence Sequence
3737

3838
public override void ReplaceWith(SqlExpression expression)
3939
{
40-
SqlNextValue replacingExpression = ArgumentValidator.EnsureArgumentIs<SqlNextValue>(expression);
40+
var replacingExpression = ArgumentValidator.EnsureArgumentIs<SqlNextValue>(expression);
4141
sequence = replacingExpression.Sequence;
4242
increment = replacingExpression.Increment;
4343
}

0 commit comments

Comments
 (0)