I'm trying to get a list of rows deleted by pressing the '-' button in a Devexpress Grid widget as depicted here. However, doing the following does not return any results
DataView delrows = new DataView(myTableAdapter.DataView.Table);
delrows.RowStateFilter = DataViewRowState.Deleted;
What am I doing wrong?
edit: Filtering on Added and Modified rows works fine.
Considering that your DevExpress grid is binded to a DataTable (either with or without a DataView):
You can retrieve the deleted rows by using the
Select()
method of theDataTable
. This is not a linq method.The rest of the rows can be retrieved by using
Just be aware that a row that is added then deleted will not have the deleted flag, but will instead be removed from the rows collection. Such rows would also have a
RowState
ofDetached
.