18 references to Count
System.Data.Entity (18)
System\Data\Mapping\ViewGeneration\CqlGenerator.cs (3)
84get { return m_projectedSlotMap.Count + m_numBools; } 209int numMembers = m_projectedSlotMap.Count; 432return m_projectedSlotMap.GetMemberPath(slotNum, TotalSlots - m_projectedSlotMap.Count);
System\Data\Mapping\ViewGeneration\QueryRewriting\QueryRewriter.cs (1)
783for (int memberNum = 0; memberNum < _context.MemberMaps.ProjectedSlotMap.Count; memberNum++)
System\Data\Mapping\ViewGeneration\Structures\CellIdBoolean.cs (1)
85int numBoolSlots = requiredSlots.Length - projectedSlotMap.Count;
System\Data\Mapping\ViewGeneration\Structures\CellQuery.cs (1)
397int numAlignedSlots = projectedSlotMap.Count;
System\Data\Mapping\ViewGeneration\Structures\CellTreeNode.cs (2)
149int totalSlots = ProjectedSlotMap.Count + NumBoolSlots; 202int numMembers = ProjectedSlotMap.Count;
System\Data\Mapping\ViewGeneration\Structures\LeafCellTreeNode.cs (1)
136Debug.Assert(cellQuery.NumProjectedSlots == ProjectedSlotMap.Count,
System\Data\Mapping\ViewGeneration\Structures\MemberProjectionIndex.cs (9)
72for (int slotNum = 0; slotNum < Count; slotNum++) 143return this.Count + boolIndex; 151Debug.Assert(slotNum < this.Count + numBoolSlots && slotNum >= this.Count, "No such boolean slot"); 152return slotNum - this.Count; 160Debug.Assert(slotNum < this.Count + numBoolSlots, "No such slot in tree"); 161return slotNum < this.Count && this[slotNum].IsPartOfKey; 169Debug.Assert(slotNum < this.Count + numBoolSlots, "Boolean slot does not exist in tree"); 170return slotNum >= this.Count;