Is there anything special I need to know about using an Action Stored Procedure returning an OUTPUT parameter.
I'm calling this from my code:
ActionProcedures.User_Authenticate(username, password, Authenticated, UserID)
and the Authenticated and UserID are not being passed back.
Here is my sp defn:
ALTER Procedure User_Authenticate
@UserName varchar(50),
@Password char(50),
@Authenticated tinyint OUTPUT,
@UserID int OUTPUT
As
....
Any ideas?