I am using a stored procedure that calls another SQLCLR stored procedure. The SQLCLR procedure returns 2 values.
How to get 2 return values from SQLCLR procedure to the T-SQL stored procedure?
I know normally from C# getting the return value using output parameter. But confusing how to get and hold return value in normal stored procedure.
SQLCLR Procedure:
DB Procedure
I am getting the proper result. Thanks for post.