Skip to content

Commit c8d3430

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public SqlMatchType MatchType
5252

5353
public override void ReplaceWith(SqlExpression expression)
5454
{
55-
SqlMatch replacingExpression = ArgumentValidator.EnsureArgumentIs<SqlMatch>(expression);
55+
var replacingExpression = ArgumentValidator.EnsureArgumentIs<SqlMatch>(expression);
5656
value = replacingExpression.Value;
5757
subQuery = replacingExpression.SubQuery;
5858
matchType = replacingExpression.MatchType;

0 commit comments

Comments
 (0)