I have a strongly typed dataset 'A' with a Customer datatable and data.

I create a new instance of the same dataset ('B') and import rows into
the 'B' Customer datatable from dataset 'A' Customer datatable.

I delete a row in dataset 'B' Customer datatable and now want to mark
the row as deleted in dataset 'A' customer datatable.

How can I do that?

I thought I could loop through the Customer B rows, find rows with row
state = deleted, find them in Customer A and delete them. However,
this process throws an exception that the deleted row is inaccessible.

Any suggestions.
Thanks,
Rick