Tuesday, 27 August 2013

Process DataRow by batch of 100 rows

Process DataRow by batch of 100 rows

How would go about this?
code runs like this:
foreach(DataRow row in dataTable.Rows)
{
foreach(DataColumn column in dataTable.Columns)
{
// do something with the rows and the columns by a bunch of 100
}
}

No comments:

Post a Comment