.Net Enterprise Library DAAB - Using Accessors to get Stored Proc Output params and Return values

656 Views Asked by At

How to access stored procedure output parameters and/or return values using the Accessors in DotNet Enterprise Library Data Access Block ?

Thanks.

2

There are 2 best solutions below

0
On
Database.GetParameterValue(command, "paramName");
1
On

Return values and output parameters are explicitly not supported when using accessors. Use one of the other DAAB methods instead.