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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top