Inheritance: IQueryTable, ILockable
Esempio n. 1
0
 public TableVariableResolver(Table table)
     : this(table, -1)
 {
 }
Esempio n. 2
0
 public TableVariableResolver(Table table, int rowIndex)
 {
     this.table = table;
     this.rowIndex = rowIndex;
 }
Esempio n. 3
0
 public int CompareTo(RawTableItem other)
 {
     return(Table.GetHashCode() - other.Table.GetHashCode());
 }