Merge and DataRow Arrays

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In the September Version of VS 2005 when i do this type of event 1 of the
array items is not put into the datatable.

DataSet ds = new DataSet();
DataRow[] drs = OtherDs.Select("blah = true");
drs.Length is right here.

ds.Merge(drs);
ds.Tables[0].Rows.Length is 1 less then drs.Length.

This happens on a 3000 item merge at least not tested smaller
 
Back
Top