12 references to Expression
System.Data.Entity (12)
System\Data\Common\CommandTrees\BasicExpressionVisitor.cs (2)
708VisitExpression(sortKey.Expression); 727VisitExpression(expression.SortOrder[idx].Expression);
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (2)
104DbExpression newExpression = this.VisitExpression(clause.Expression); 105if (!object.ReferenceEquals(clause.Expression, newExpression))
System\Data\Common\CommandTrees\Internal\ExpressionDumper.cs (1)
802Dump(clause.Expression, "Expression");
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (1)
669clause.Expression.Accept(this);
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (1)
965TreeNode key = this.Visit((clause.Ascending ? "Asc" : "Desc"), clause.Expression);
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
2831Node exprNode = VisitExprAsScalar(clause.Expression);
System\Data\SqlClient\SqlGen\Sql8ConformanceChecker.cs (1)
140return VisitExpression(sortClause.Expression);
System\Data\SqlClient\SqlGen\Sql8ExpressionRewriter.cs (2)
141if (sortClause.Expression.ExpressionKind == DbExpressionKind.Property) 143sortExpressions.Add((DbPropertyExpression)sortClause.Expression);
System\Data\SqlClient\SqlGen\SqlGenerator.cs (1)
3696orderByClause.Append(sortClause.Expression.Accept(this));