Beispiel #1
0
 internal GridReader(IDbCommand command, IDataReader reader, Identity identity, IParameterCallbacks callbacks, bool addToCache)
 {
     Command         = command;
     this.reader     = reader;
     this.identity   = identity;
     this.callbacks  = callbacks;
     this.addToCache = addToCache;
 }
Beispiel #2
0
 internal GridReader(IDbCommand command, IDataReader reader, Identity identity, IParameterCallbacks callbacks)
 {
     this.command   = command;
     this.reader    = reader;
     this.identity  = identity;
     this.callbacks = callbacks;
 }