12 references to Escape
System.Data.Entity (12)
System\Data\Common\CommandTrees\BasicExpressionVisitor.cs (1)
325VisitExpression(expression.Escape);
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (2)
506DbExpression newEscape = this.VisitExpression(expression.Escape); 510!object.ReferenceEquals(expression.Escape, newEscape))
System\Data\Common\CommandTrees\Internal\ExpressionDumper.cs (1)
539Dump(e.Escape, "Escape");
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (2)
362if (e.Escape != null) 364e.Escape.Accept(this);
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (1)
606return this.Visit("Like", e.Argument, e.Pattern, e.Escape);
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
1341VisitExpr(e.Escape)
System\Data\SqlClient\SqlGen\Sql8ConformanceChecker.cs (1)
466bool excapeNeedsRewrite = VisitExpression(expression.Escape);
System\Data\SqlClient\SqlGen\SqlGenerator.cs (3)
800MatchTargetPatternForForcingNonUnicode(likeExpr.Escape); 1673if (e.Escape.ExpressionKind != DbExpressionKind.Null) 1676result.Append(e.Escape.Accept(this));