Read DataTable by RowState

Posted by RBrattas on Stack Overflow See other posts from Stack Overflow or by RBrattas
Published on 2010-04-24T18:18:19Z Indexed on 2010/04/25 3:23 UTC
Read the original article Hit count: 305

Filed under:
|

I am reading my DataTable as follow:

foreach ( DataRow o_DataRow in vco_DataTable.Rows )
{
//Insert More Here
}

It crash; because I insert more records.

How can I read my DataTable without reading the new records? Can I read by RowState?

Thanks

© Stack Overflow or respective owner

Related posts about data

Related posts about validation