DataView's RowStateFilter

  • Thread starter Thread starter Marina
  • Start date Start date
M

Marina

Is there any way to have a DataView, that only shows rows that have been
changed? So no deleted or added rows - just rows that already existed and
are now marked as modified.
Wanted to set the RowStateFilter property, but DataViewRowState enumeration
doesn't seem to have a member to describe this situation? All the ones that
look like they are what I want, actually end up including unwanted rows.

Thanks
 
Yes. The problem with that, is then any changes made to the result from
getchanges has to be merged back in - which is a big pain. I wanted to work
with the original rows, but filter on change type.
 
Back
Top