Skip to content

Commit a3821d6

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public bool Not {
5656

5757
public override void ReplaceWith(SqlExpression expression)
5858
{
59-
SqlLike replacingExpression = ArgumentValidator.EnsureArgumentIs<SqlLike>(expression);
59+
var replacingExpression = ArgumentValidator.EnsureArgumentIs<SqlLike>(expression);
6060
this.expression = replacingExpression.expression;
6161
pattern = replacingExpression.Pattern;
6262
escape = replacingExpression.Escape;

0 commit comments

Comments
 (0)