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

690 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

1
Chris Tavares On

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

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