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