Esempio n. 1
0
 public RangeIteratorBase(Session session, IPersistentStore store, TableBase t, int position)
 {
     this.session       = session;
     this.rangePosition = position;
     this.Store         = store;
     this.It            = t.GetRowIterator(store);
     this.isBeforeFirst = true;
 }