DataView over changing table

  • Thread starter Thread starter Ondrej Sevecek
  • Start date Start date
O

Ondrej Sevecek

Hello,
when DataView is initialized with some rule over DataTable. Now, I start
iterating "foreach (DataRowView currentRow ...)". Concurently, the table
gets some changes. What will be seen from the view? Only old data?

Ondra.
 
Hi Ondrej,

DataView is just a view on the table.
It will reflect whatever data is in table IOW it doesn't have its values.
So, the answer would be: you'll see the actual data
 
Back
Top