Marcus,
I know how to add sp's to the uow with callback, but what I meant is:
If I define a UnitOfWork and add sp A with a Callback, this would get executed and I would get the output parameter ParamA1 back. I then have to pass ParamA1 to spB.
So in Code, I would declare a unitOfWork, declare ParamA1 parameter, add the sp A with ParamA1 to the unitOfWork, add sp B with ParamA1 to this unitOfWork and then call UnitOfWork.Commit();
How would that make sure that by sp B uses the value that sp A returns
Gr.,
G.I.