How does one call a stored procedure in oracle from C#?
It's basically the same mechanism as for a non query command with:
CommandType.StoredProcedureThere are plenty of examples out there, the first one returned by Google is this one
There's also a little trap you might fall into, if your SP is a function, your return value parameter must be first in the parameters collection