I've found something that works, but not sure if it's right to get rollback.
Here is my code to make all changes rollback. Is it correct?
void providerSource_ApplyingChanges(object sender, DbApplyingChangesEventArgs e)
{
e.Transaction.Rollback();
}
void providerDestination_ApplyingChanges(object sender, DbApplyingChangesEventArgs e)
{
e.Transaction.Rollback();
}
Peter Kellner http://peterkellner.net Microsoft MVP • ASPInsider