M
Martin.McDonald
while (MyModel.MyTable.Rows.Count > 0)
{
MyModel.MyTable[0].Delete();
}
This will execute indefinitely. One must add "AcceptChanges" after the
delete to fix it. Is this a bug or is it by ADO.Net design?
--Marty
{
MyModel.MyTable[0].Delete();
}
This will execute indefinitely. One must add "AcceptChanges" after the
delete to fix it. Is this a bug or is it by ADO.Net design?
--Marty