11 references to CellLabel
System.Data.Entity (11)
System\Data\Mapping\ViewGeneration\CellCreator.cs (2)
253newCell = Cell.CreateCS(rightQuery, leftQuery, originalCell.CellLabel, m_currentCellNumber); 257newCell = Cell.CreateCS(leftQuery, rightQuery, originalCell.CellLabel, m_currentCellNumber);
System\Data\Mapping\ViewGeneration\Structures\ErrorLog.cs (3)
140CellLabel label = m_sourceCells[0].CellLabel; 175var orderedCells = sourceCells.OrderBy<Cell, int>(cell => cell.CellLabel.StartLineNumber, Comparer<int>.Default); 186lineBuilder.AppendFormat(CultureInfo.InvariantCulture, "{0}", cell.CellLabel.StartLineNumber);
System\Data\Mapping\ViewGeneration\Validation\ErrorPatternMatcher.cs (1)
755return FragmentQuery.Create(wrapper.OnlyInputCell.CellLabel.ToString(), wrapper.CreateRoleBoolean(), wrapper.OnlyInputCell.GetRightQuery(m_viewgenContext.ViewTarget));
System\Data\Mapping\ViewGeneration\ViewgenContext.cs (2)
361Cell.CreateCS(newMainQuery, newOtherQuery, cell.CellLabel, cell.CellNumber) : 362Cell.CreateCS(newOtherQuery, newMainQuery, cell.CellLabel, cell.CellNumber);
System\Data\Mapping\ViewGeneration\ViewgenGatekeeper.cs (3)
233mslFileLocation = cell.CellLabel.SourceLocation; 276if (lowestLineNum == -1 || cell.CellLabel.StartLineNumber < lowestLineNum) 279lowestLineNum = cell.CellLabel.StartLineNumber;