示例#1
0
 public void DataViewRowRead(IReadFilterArgs args)
 {
     // called once after all rows have been read from the database.  Do tear down here.
     throw new NotImplementedException();
 }
示例#2
0
 public void DataViewRead(IReadFilterArgs args)
 {
     // called once for each row read from the database.
 }
 public void TableRead(IReadFilterArgs args)
 {
     // called one time for each database table mapped in the Dataview
     // after all rows have been read -- a request-level 'post' hook
 }
示例#4
0
 public void DataViewReading(IReadFilterArgs args)
 {
     // called once before any rows are read from the database.  Do initialization here.
 }
 public void TableRowRead(IReadFilterArgs args)
 {
     // called once for each row -- a row-level 'post' hook
 }