Esempio n. 1
0
 public void AppendRow(IDbRow dbRow)
 {
     if (dbRow.GetType() != typeof(DbRow))
     {
         throw new NotImplementedException();
     }
     this.DataTable.Rows.Add((dbRow as DbRow).GetDataRow());
 }
        public IDbRow Get(int index)
        {
            IDbRow row = qRows.ElementAt(index);

            return(row);
        }
 public void AddRow(IDbRow row)
 {
     qRows.Enqueue(row);
 }