Hi,
I'm using the LLBLGen Runtime Version 5.9.2 using the adapter template. I have the following stored procedure:
CREATE PROCEDURE proc
AS
-- do something…
SELECT col1
FROM #temptable;
RETURN @iRc;
GO
With the generated code I can do the following to fetch the resultset into a typed view:
var result = new TypedViewClasses.RS_ProcTypedView();
adapter.FetchTypedView(result, RetrievalProcedures.GetQueryRS_ProcTypedView(parameter, adapter));
How can retrieve the return code of the stored procedure (the RETURN @iRc)?
Thanks,
andreas