How would one go about using ...Dapper... with Oracle stored procedures which return cursors?...var p = new DynamicParameters();
p.Add("foo", "bar");
p.Add("baz_cursor", dbType: DbType.? , direction: ParameterDirection.Output);
...Here, the DbType is Syst...