13 references to OuterApply
System.Data.Entity (13)
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
945
Debug.Assert(expression.ExpressionKind == DbExpressionKind.
OuterApply
, "DbApplyExpression had ExpressionKind other than CrossApply or OuterApply?");
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (3)
354
return new DbApplyExpression(DbExpressionKind.
OuterApply
, resultType, input, apply);
2704
Debug.Assert(DbExpressionKind.CrossApply == applyKind || DbExpressionKind.
OuterApply
== applyKind, "Invalid ApplyType");
2711
case DbExpressionKind.
OuterApply
:
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (1)
87
names[(int)DbExpressionKind.
OuterApply
] = "OA";
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)
2548
return new DbApplyExpression(DbExpressionKind.
OuterApply
, TypeUsage.Create(TypeHelpers.CreateCollectionType(resultType)), newInput, newApply);
System\Data\Query\PlanCompiler\CTreeGenerator.cs (1)
2067
return VisitApply(n, DbExpressionKind.
OuterApply
);
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
2416
PlanCompiler.Assert(DbExpressionKind.CrossApply == e.ExpressionKind || DbExpressionKind.
OuterApply
== e.ExpressionKind, "Unrecognized DbExpressionKind specified in DbApplyExpression");
System\Data\SqlClient\SqlGen\SqlGenerator.cs (3)
605
case DbExpressionKind.
OuterApply
:
3921
return (DbExpressionKind.CrossApply == e.ExpressionKind || DbExpressionKind.
OuterApply
== e.ExpressionKind);
4106
case DbExpressionKind.
OuterApply
: