What command should one use to run a stored procedure within a Transaction using a DataAccessAdapter?
I have successfully used CallActionStoredProcedure with an adapter but coding all those SqlParameter properties is tedious and seems to defeat the purpose of LLBLGEN.
Members of the ActionProcedures class handle parameters elegantly, but it seems it cannot be used directly with an instance of DataAccessAdapter.
It seems that the ActionProcedures methods can be used with a UnitOfWork2 instance which in turn can be used with an adapter. However, the output parameters of the stored procedure are not returned to the VB program.
I am trying to retrofit Transaction/Commit/Rollback processing to old VB.NET code that uses a mix of SaveEntity and ActionProcedures methods with no intermediate user interaction.
Have you any suggestions?
Thanks.