2 overrides of ToCqlBlock
System.Data.Entity (2)
System\Data\Mapping\ViewGeneration\Structures\LeafCellTreeNode.cs (1)
126internal override CqlBlock ToCqlBlock(bool[] requiredSlots, CqlIdentifiers identifiers, ref int blockAliasNum, ref List<WithRelationship> withRelationships)
System\Data\Mapping\ViewGeneration\Structures\OpCellTreeNode.cs (1)
187internal override CqlBlock ToCqlBlock(bool[] requiredSlots, CqlIdentifiers identifiers, ref int blockAliasNum,
4 references to ToCqlBlock
System.Data.Entity (4)
System\Data\Mapping\ViewGeneration\CqlGenerator.cs (1)
134CqlBlock viewBlock = m_view.ToCqlBlock(requiredSlots, m_identifiers, ref m_currentBlockNum, ref withRelationships);
System\Data\Mapping\ViewGeneration\Structures\CellTreeNode.cs (1)
223CqlBlock block = ToCqlBlock(requiredSlots, identifiers, ref blockAliasNum, ref withRelationships);
System\Data\Mapping\ViewGeneration\Structures\OpCellTreeNode.cs (2)
234CqlBlock childBlock = child.ToCqlBlock(childProjectedSlots, identifiers, ref blockAliasNum, ref withRelationships); 354CqlBlock childBlock = child.ToCqlBlock(childProjectedSlots, identifiers, ref blockAliasNum, ref withRelationships);