V
VM
I have a 35000 line datagrid and updating one field in all 35000 rows takes
an eternity. How come? Since I don't have the datasource available (it may
be a table or view), in my example I do it like this:
for (int i=0;i<34000;i++) //the first 2000 records took 2 mins.
{
dataGrid_auditAddress[i, 5] = "MARKED";
}
Any help would be appreciated.
an eternity. How come? Since I don't have the datasource available (it may
be a table or view), in my example I do it like this:
for (int i=0;i<34000;i++) //the first 2000 records took 2 mins.
{
dataGrid_auditAddress[i, 5] = "MARKED";
}
Any help would be appreciated.