3 writes to MinRows
System.Data.Entity (3)
System\Data\Query\InternalTrees\NodeInfo.cs (3)
702nodeInfo.MinRows = RowCount.Zero; 778nodeInfo.MinRows = op.Keys.IsEmpty ? RowCount.One : (relOpChildNodeInfo.MinRows == RowCount.One ? RowCount.One : RowCount.Zero); 1113nodeInfo.MinRows = minRows;
11 references to MinRows
System.Data.Entity (11)
System\Data\Query\InternalTrees\NodeInfo.cs (9)
778nodeInfo.MinRows = op.Keys.IsEmpty ? RowCount.One : (relOpChildNodeInfo.MinRows == RowCount.One ? RowCount.One : RowCount.Zero); 824if (chiNodeInfo.MinRows < minCard) 826minCard = chiNodeInfo.MinRows; 921minRows = leftRelOpNodeInfo.MinRows; 988RowCount minRows = (op.OpType == OpType.CrossApply) ? RowCount.Zero : leftRelOpNodeInfo.MinRows; 1031minRows = (leftChildNodeInfo.MinRows > rightChildNodeInfo.MinRows) ? leftChildNodeInfo.MinRows : rightChildNodeInfo.MinRows;
System\Data\Query\PlanCompiler\TransformationRules.cs (2)
2843applyRightChildNodeInfo.MinRows >= RowCount.One) 2987if (applyKind == OpType.CrossApply && (applyRightChildNodeInfo.MinRows != RowCount.One))