23 references to JoinKind
System.Data.Entity (23)
System\Data\Query\PlanCompiler\JoinGraph.cs (23)
346
private
JoinKind
m_joinKind;
362
AugmentedJoinNode joinNode,
JoinKind
joinKind,
394
internal
JoinKind
JoinKind { get { return m_joinKind; } set { m_joinKind = value; } }
435
JoinKind
joinKind = joinOpType == OpType.LeftOuterJoin ?
JoinKind
.LeftOuter :
JoinKind
.Inner;
450
internal static JoinEdge CreateTransitiveJoinEdge(AugmentedTableNode left, AugmentedTableNode right,
JoinKind
joinKind,
906
JoinKind
joinKind = (opType == OpType.LeftOuterJoin) ?
JoinKind
.LeftOuter :
JoinKind
.Inner;
914
if (joinKind ==
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)
1078
if (edge1.JoinKind ==
JoinKind
.Inner)
1145
joinEdge.JoinKind =
JoinKind
.Inner;
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)