问题
We have recently changed from ADO to Peta Poco. Connecting to SQL Server is quite easy and is getting familiar with it. However, I can't find a way to connect to Oracle database. These are the syntaxes I tried.
var records = db.Execute("ADMIN.ProcedureName @0", param);
var records = db.Fetch<dynamic>("exec ADMIN.ProcedureName ('" + str1 + "','" + recordStart + "','" + recordEnd + "');");
来源:https://stackoverflow.com/questions/56849740/how-to-call-oracle-stored-procedure-using-petapoco