I have a BindingList for DTO which can bind directly to window form control and the problem was raised when user want to delete a row in my datagridview.
In that situation, the deleted object (row) go away and when that DTO BindingList get back to server for updating, I dont know which row to delete.
Can a BindingList have a collection for deleted object by default or I have to implement it manually or there is another option for my situation?
Any helps would be appreciated.