10 references to LeftOuter
System.Data.Entity (10)
System\Data\Query\PlanCompiler\JoinGraph.cs (10)
435
JoinKind joinKind = joinOpType == OpType.LeftOuterJoin ? JoinKind.
LeftOuter
: JoinKind.Inner;
906
JoinKind joinKind = (opType == OpType.LeftOuterJoin) ? JoinKind.
LeftOuter
: JoinKind.Inner;
1009
if (edge1.JoinKind == JoinKind.
LeftOuter
&&
1017
if (edge1.JoinKind == JoinKind.
LeftOuter
&& edge1.RightVars.Count != edge2.LeftVars.Count)
1059
else if (edge1.JoinKind == JoinKind.
LeftOuter
)
1720
if (joinEdge.JoinKind == JoinKind.
LeftOuter
&& !keyVars.IsSet(v))
1810
if (joinEdge.JoinKind == JoinKind.
LeftOuter
&& !keyVars.IsSet(v))
1935
PlanCompiler.Assert(joinEdge.JoinKind == JoinKind.
LeftOuter
, "Expected left-outer-join");
2003
if (joinEdge.JoinKind == JoinKind.
LeftOuter
&& fkConstraint.ChildMultiplicity == md.RelationshipMultiplicity.Many)
2221
if (joinEdge.JoinKind == JoinKind.
LeftOuter
)