7 references to Inner
System.Data.Entity (7)
System\Data\Query\PlanCompiler\JoinGraph.cs (7)
435
JoinKind joinKind = joinOpType == OpType.LeftOuterJoin ? JoinKind.LeftOuter : JoinKind.
Inner
;
906
JoinKind joinKind = (opType == OpType.LeftOuterJoin) ? JoinKind.LeftOuter : JoinKind.
Inner
;
914
if (joinKind == JoinKind.
Inner
)
1078
if (edge1.JoinKind == JoinKind.
Inner
)
1145
joinEdge.JoinKind = JoinKind.
Inner
;
1906
PlanCompiler.Assert(joinEdge.JoinKind == JoinKind.
Inner
, "Expected inner join");
2017
if (joinEdge.JoinKind == JoinKind.
Inner
)