Deleted RowState and the XmlDataDocument...

  • Thread starter Thread starter Kieron Lanning
  • Start date Start date
K

Kieron Lanning

Hi,

I'm retrieving the changes from a dataset and creating an XmlDataDocument
for transport to a web service, however any rows with a RowState of Deleted
don't get propagated...is there something that I'm missing?...

Any help would be appreciated as I'm slowly going out of my mind.

Kieron
 
I've found that it does get the deleted rows. But that all depends on the
DataRowState that you request. I use the version of GetChanges() that takes
no parameters and it gets rows of any change type, including deleted rows.
Are you use the overload that takes a DataRowState? If so, which are you
specifying?
 
Back
Top