Ejemplo n.º 1
0
 /// <summary>
 /// Reads the next entry from the underlyed IDataReader and binds this data to "row" field
 /// </summary>
 /// <param name="args">The args.</param>
 protected sealed override void ProcessLine(IDataRecord args)
 {
     row = new T();
     DbGateway.Bind(row, args);
     ProcessLine();
 }