Hi folks,
I have a DataGridView bounded to an EntityCollection. I can modify values, add rows or delete rows. I want to save all these actions when the user press a 'Save' button. Inside the button click event handler, I can see that the EntityCollection has been modified according to all the actions performed (Adding row, removing row, changing values).
When I do a SaveMulti(), I can save all of these modifications excluding the rows that have been deleted. I can't do a DeleteMulti() as it requires a PredicateExpression.
Do you have any idea on how I can perform the saving action?
Thanks in advance!
Regards,
Kal