Dapper - call Oracle schema.package.function
问题 I can call Oracle stored procedure and function with Dapper, but I have problems with calling a function inside of package. My error is: ORA-06550: line 1, column 39: PLS-00302: component 'funct' must be declared ORA-06550: line 1, column 7: PL/SQL: Statement ignored My code is : using (IDbConnection cn = Connection) { var a = cn.ExecuteReader(oracleFunctionName, fnParameters, commandType: CommandType.StoredProcedure); } My parameters are ok, but it seems that Dapper can't resolve ORacle