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