14 references to CrossApply
System.Data.Entity (14)
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
939if (DbExpressionKind.CrossApply == expression.ExpressionKind)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (3)
340return new DbApplyExpression(DbExpressionKind.CrossApply, resultType, input, apply); 2704Debug.Assert(DbExpressionKind.CrossApply == applyKind || DbExpressionKind.OuterApply == applyKind, "Invalid ApplyType"); 2708case DbExpressionKind.CrossApply:
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (1)
86names[(int)DbExpressionKind.CrossApply] = "CA";
System\Data\Common\CommandTrees\RelationalExpressions.cs (1)
35Debug.Assert(DbExpressionKind.CrossApply == applyKind || DbExpressionKind.OuterApply == applyKind, "Invalid DbExpressionKind for DbApplyExpression");
System\Data\Common\EntitySql\SemanticAnalyzer.cs (1)
3294private static readonly DbExpressionKind[] applyMap = { DbExpressionKind.CrossApply, DbExpressionKind.OuterApply };
System\Data\Objects\ELinq\MethodCallTranslator.cs (1)
2611if (cqtExpression.ExpressionKind != DbExpressionKind.CrossApply)
System\Data\Query\PlanCompiler\CTreeGenerator.cs (1)
2061return VisitApply(n, DbExpressionKind.CrossApply);
System\Data\Query\PlanCompiler\ITreeGenerator.cs (2)
2416PlanCompiler.Assert(DbExpressionKind.CrossApply == e.ExpressionKind || DbExpressionKind.OuterApply == e.ExpressionKind, "Unrecognized DbExpressionKind specified in DbApplyExpression"); 2422if (DbExpressionKind.CrossApply == e.ExpressionKind)
System\Data\SqlClient\SqlGen\SqlGenerator.cs (3)
601case DbExpressionKind.CrossApply: 3921return (DbExpressionKind.CrossApply == e.ExpressionKind || DbExpressionKind.OuterApply == e.ExpressionKind); 4105case DbExpressionKind.CrossApply: