Getting information from deleted rows [Resolved]
I have a DataSet and the user can delete a row from a table. I get a DataSet of deletions using DataSet.GetChanges(DataRowState.Deleted). What I'd like to do is get information about these deleted rows before committing to the database. But when I try, I get an exception, the message is "Deleted row information cannot be accessed through the row.".
So my question is, how can I get information (primary key, for example) from a deleted row?
Thanks,
Mike