I am newly with c# MVC that passing param value to oracle PROCEDURE. It is possible to declare param set both input and output from db? that currently my code:
public string get_data(out string send_get)
cmd.Parameters.Add("send_get", OracleDbType.Varchar2).Direction = ParameterDirection.InputOutput;
Am i right with this param declaration? If anyone have experience with it please kindly help me please. thanks in advance