M
Michael Wong
Hi,
I'm currently using the following code to count non-deleted rows in a
DataTable. Is there another more efficient method?
int count = (int)myDataSet.myDataTable.Computer("Count(columnId)","");
// The following will also count the deleted rows
int count = myDataSet.myDataTable.Count
Thanks
I'm currently using the following code to count non-deleted rows in a
DataTable. Is there another more efficient method?
int count = (int)myDataSet.myDataTable.Computer("Count(columnId)","");
// The following will also count the deleted rows
int count = myDataSet.myDataTable.Count
Thanks