/// <summary>
 ///     Creates a boolean expression for the variable name specified by <paramref name="index" />, e.g., 0 results in from0, 1 into from1.
 /// </summary>
 internal CellIdBoolean(CqlIdentifiers identifiers, int index)
 {
     Debug.Assert(index >= 0);
     m_index = index;
     m_slotName = identifiers.GetFromVariable(index);
 }
 internal CellIdBoolean(CqlIdentifiers identifiers, int index)
 {
     this.m_index    = index;
     this.m_slotName = identifiers.GetFromVariable(index);
 }
Exemplo n.º 3
0
 // <summary>
 // Creates a boolean expression for the variable name specified by <paramref name="index" />, e.g., 0 results in from0, 1 into from1.
 // </summary>
 internal CellIdBoolean(CqlIdentifiers identifiers, int index)
 {
     Debug.Assert(index >= 0);
     m_index    = index;
     m_slotName = identifiers.GetFromVariable(index);
 }