We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7782ab7 commit a3821d6Copy full SHA for a3821d6
Orm/Xtensive.Orm/Sql/Dml/Expressions/SqlLike.cs
@@ -56,7 +56,7 @@ public bool Not {
56
57
public override void ReplaceWith(SqlExpression expression)
58
{
59
- SqlLike replacingExpression = ArgumentValidator.EnsureArgumentIs<SqlLike>(expression);
+ var replacingExpression = ArgumentValidator.EnsureArgumentIs<SqlLike>(expression);
60
this.expression = replacingExpression.expression;
61
pattern = replacingExpression.Pattern;
62
escape = replacingExpression.Escape;
0 commit comments