I'm using UnitOfWork2 (LLBL 2.0 adapter mode) and I need information about number of rows that has been changed during execution.
All methods where called directy without UnitOfWork2 are returning such information, but with UnitOfWork there is no way to tell how many rows has been changed.
Especialy for UpdateEntitiesDirectly and DeleteEntitiesDirectly return value is ignored inside UnitOfWork2. Even worse one can add action with AddUpdateEntitiesDirectlyCall (or Delete) but there is no way to check what is inside existing unit of work. Fields are private and don't have corresponding properties and classes used to keep info about calls are internal.
What do you sugest? Changing UnitOfWork2.cs on my own doesn't sound like a best idea.