Example #1
0
 public RowSet(string tableName, DataTable data)
 {
     Data      = data;
     TableName = tableName;
     Current   = new VariablesWrapper(vn => CurrentRow[vn], (vn, v) => CurrentRow[vn] = v);
 }
Example #2
0
 /// <summary>
 /// Use of this constructor REQUIRES the caller to instantiate the Data datatable.
 /// </summary>
 protected RowSet()
 {
     Current = new VariablesWrapper(vn => CurrentRow[vn], (vn, v) => CurrentRow[vn] = v);
 }