1 type derived from CellIdBoolean
System.Data.Entity (1)
System\Data\Mapping\ViewGeneration\Structures\QualifiedCellIdBoolean.cs (1)
21internal sealed class QualifiedCellIdBoolean : CellIdBoolean
4 instantiations of CellIdBoolean
System.Data.Entity (4)
System\Data\Mapping\ViewGeneration\CqlGeneration\BooleanProjectedSlot.cs (1)
32m_originalCell = new CellIdBoolean(identifiers, originalCellNum);
System\Data\Mapping\ViewGeneration\QueryRewriting\QueryRewriter.cs (2)
752literalRemap[new CellIdBoolean(_identifiers, oldNumber)] = new CellIdBoolean(_identifiers, newNumber);
System\Data\Mapping\ViewGeneration\ViewgenContext.cs (1)
309BoolExpression fromVariable = BoolExpression.CreateLiteral(new CellIdBoolean(m_identifiers, extentCellsList[i].CellNumber), m_memberMaps.LeftDomainMap);
7 references to CellIdBoolean
System.Data.Entity (7)
System\Data\Mapping\ViewGeneration\CqlGeneration\BooleanProjectedSlot.cs (4)
34Debug.Assert(!(expr.AsLiteral is CellIdBoolean) || 35BoolLiteral.EqualityComparer.Equals((CellIdBoolean)expr.AsLiteral, m_originalCell), "Cellid boolean for the slot and cell number disagree"); 41/// The actual value of the slot - could be <see cref="CellIdBoolean"/>! 47private readonly CellIdBoolean m_originalCell;
System\Data\Mapping\ViewGeneration\Structures\CellIdBoolean.cs (2)
92CellIdBoolean rightBoolean = right as CellIdBoolean;
System\Data\Mapping\ViewGeneration\Structures\QualifiedCellIdBoolean.cs (1)
19/// It is a subclass of <see cref="CellIdBoolean"/> with an added block alias.