Dapper.Oracle icon indicating copy to clipboard operation
Dapper.Oracle copied to clipboard

Oracle support for Dapper Micro ORM.

Results 16 Dapper.Oracle issues
Sort by recently updated
recently updated
newest added

Hello There! First of all, thank you very much for the library. I have found the following problem in file Dapper.Oracle/BulkSql/BulkOperation.cs: line 79: var dbType = map.DbType ?? OracleMapper.GuessType(obj.First().GetType()); In...

We need support for .net 5.x

Hi, I am struggling with something not sure why not able to execute. I have a clause in that I would like to execute in a second query... for simplicity...

Hi Many thanks for this library! Can you please document the optional parameter `size` on `OracleDynamicParameters.Add()`? The code was not obvious to me. Perhaps it is evident if you have...

My company runs the [Microsoft Security Code Analysis toolset](https://secdevtools.azurewebsites.net/) to audit our managed and unmanaged code. [BinSkim ](https://secdevtools.azurewebsites.net/helpbinskim.html) is one of those tools and reports the following issue with the...

I noticed that OracleParameter has a attribute, "UdtTypeName", which allows the user to specify the UdtType that this object is being mapped to in Oracle DB. This would be helpful...

Hi Thanks for the excellent library, there is a missing OracleMappingType. Oracle.ManagedDataAccess have a Boolean value that is not present as a mapping type. ![image](https://user-images.githubusercontent.com/102340451/200190315-2428eb06-758e-4394-a638-b456074f6431.png)

This test case throws an exception. ``` public async Task BulkNotWorking() { var data = new List() { new Scenario { Id = -3, Name = "test1", PeriodYear = 2023,...

Hi, We are using Dapper.Oracle, and are sometimes getting `InvalidCastException` errors when reading decimal values from Oracle, if these values contain too many decimals. This is a known problem in...