18 references to LeftOuterJoin
System.Data.Entity (18)
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
912
else if (DbExpressionKind.
LeftOuterJoin
== expression.ExpressionKind)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (3)
416
return new DbJoinExpression(DbExpressionKind.
LeftOuterJoin
, resultType, left, right, joinCondition);
2724
DbExpressionKind.
LeftOuterJoin
== joinKind,
2741
case DbExpressionKind.
LeftOuterJoin
:
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (1)
85
names[(int)DbExpressionKind.
LeftOuterJoin
] = "LOJ";
System\Data\Common\CommandTrees\RelationalExpressions.cs (1)
372
DbExpressionKind.
LeftOuterJoin
== joinKind ||
System\Data\Common\EntitySql\SemanticAnalyzer.cs (1)
3244
private static readonly DbExpressionKind[] joinMap = { DbExpressionKind.CrossJoin, DbExpressionKind.InnerJoin, DbExpressionKind.
LeftOuterJoin
, DbExpressionKind.FullOuterJoin };
System\Data\Mapping\Update\Internal\Propagator.cs (1)
139
if (DbExpressionKind.InnerJoin != node.ExpressionKind && DbExpressionKind.
LeftOuterJoin
!= node.ExpressionKind)
System\Data\Mapping\Update\Internal\Propagator.JoinPropagator.cs (1)
64
Debug.Assert(DbExpressionKind.
LeftOuterJoin
== node.ExpressionKind || DbExpressionKind.InnerJoin == node.ExpressionKind, "(Update/JoinPropagagtor/JoinEvaluator) " +
System\Data\Mapping\ViewValidator.cs (1)
112
case DbExpressionKind.
LeftOuterJoin
:
System\Data\Objects\ELinq\MethodCallTranslator.cs (1)
2632
if (rightProject.Input.Expression.ExpressionKind != DbExpressionKind.
LeftOuterJoin
)
System\Data\Query\PlanCompiler\CTreeGenerator.cs (1)
1992
return VisitBinaryJoin(n, DbExpressionKind.
LeftOuterJoin
);
System\Data\Query\PlanCompiler\ITreeGenerator.cs (2)
2285
DbExpressionKind.
LeftOuterJoin
== e.ExpressionKind ||
2348
case DbExpressionKind.
LeftOuterJoin
:
System\Data\SqlClient\SqlGen\SqlGenerator.cs (4)
1638
case DbExpressionKind.
LeftOuterJoin
:
3082
case DbExpressionKind.
LeftOuterJoin
:
3936
DbExpressionKind.
LeftOuterJoin
== e.ExpressionKind);
4104
case DbExpressionKind.
LeftOuterJoin
: