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