1 write to JoinKind
System.Data.Entity (1)
System\Data\Query\PlanCompiler\JoinGraph.cs (1)
1145
joinEdge.
JoinKind
= JoinKind.Inner;
17 references to JoinKind
System.Data.Entity (17)
System\Data\Query\PlanCompiler\JoinGraph.cs (17)
1003
if (edge1.
JoinKind
!= edge2.
JoinKind
)
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)
1075
JoinEdge newEdge = JoinEdge.CreateTransitiveJoinEdge(edge1.Left, edge2.Right, edge1.
JoinKind
,
1078
if (edge1.
JoinKind
== JoinKind.Inner)
1080
JoinEdge reverseEdge = JoinEdge.CreateTransitiveJoinEdge(edge2.Right, edge1.Left, edge1.
JoinKind
,
1682
edge2.
JoinKind
!= edge1.
JoinKind
)
1720
if (joinEdge.
JoinKind
== JoinKind.LeftOuter && !keyVars.IsSet(v))
1810
if (joinEdge.
JoinKind
== JoinKind.LeftOuter && !keyVars.IsSet(v))
1906
PlanCompiler.Assert(joinEdge.
JoinKind
== JoinKind.Inner, "Expected inner join");
1935
PlanCompiler.Assert(joinEdge.
JoinKind
== JoinKind.LeftOuter, "Expected left-outer-join");
2003
if (joinEdge.
JoinKind
== JoinKind.LeftOuter && fkConstraint.ChildMultiplicity == md.RelationshipMultiplicity.Many)
2017
if (joinEdge.
JoinKind
== JoinKind.Inner)
2221
if (joinEdge.
JoinKind
== JoinKind.LeftOuter)