I have a problem when I called Oracle stored procedure. I also used InsightDbConnection with method Execute, when I input the outputParameter is an object but it still empty.
Here is my code
var storedProcedureName = "spTest";
object param = new { P_Param1 = "",//output parameter
P_Param2 = "Input parameter"
};
object output = new {P_Param1 = ""};
IDbConnection dbConnect = new OracleConnection(connectionString).OpenConnection();
dbConnect .Execute(storedProcedureName , param , outputParameters: output);
Anybody can help me, please.