Dapper.Oracle
2.0.3
Install-Package Dapper.Oracle -Version 2.0.3
dotnet add package Dapper.Oracle --version 2.0.3
<PackageReference Include="Dapper.Oracle" Version="2.0.3" />
paket add Dapper.Oracle --version 2.0.3
#r "nuget: Dapper.Oracle, 2.0.3"
// Install Dapper.Oracle as a Cake Addin
#addin nuget:?package=Dapper.Oracle&version=2.0.3
// Install Dapper.Oracle as a Cake Tool
#tool nuget:?package=Dapper.Oracle&version=2.0.3
Dapper is a great tool if you want to write database-agnostic code.
However, sometimes you need to access functionality that is provider-specific.
This assembly adds support for writing Oracle-specific SQL, that supports all dbtypes used by the Oracle managed provider on a parameter,
supports setting various properties on the command(LOBFetchSize, ArrayBindCount, BindByName), as well as setting CollectionType on the parameter.
Using this package, you can now run stored procedures that returns RefCursor, or use array bind count to execute a sql statements with a array of parameters.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
NuGet packages (11)
Showing the top 5 NuGet packages that depend on Dapper.Oracle:
Package | Downloads |
---|---|
Hangfire.Oracle.Core
Hangfire's Oracle storage. |
|
HanaTech.Framework.Dapper
Package Description |
|
Uinfor.Hangfire.Oracle
Uinfor.Hangfire's Oracle storage.Update Nuget Standard 2.0 |
|
fion.modelerp.core
ModelErp |
|
SanNuo.ERP.WebApis.DataDapper.Common
dotnet framework web api common library(stored procedure commonly methods) just for internal usage. please do not reference if you dont known anything. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.3 | 123,198 | 6/4/2021 |
2.0.2 | 91,299 | 2/10/2021 |
2.0.1 | 47,617 | 11/6/2020 |
2.0.0 | 25,819 | 9/22/2020 |
1.2.1 | 113,583 | 5/12/2019 |
1.2.0 | 3,385 | 4/12/2019 |
1.0.3 | 109,633 | 12/18/2018 |
1.0.2 | 12,823 | 6/14/2018 |
1.0.1 | 2,681 | 6/13/2018 |
0.9.9 | 1,211 | 5/3/2018 |
0.9.8 | 827 | 5/3/2018 |
0.9.7 | 985 | 5/2/2018 |
0.9.6 | 905 | 4/30/2018 |
0.9.5 | 855 | 4/25/2018 |
0.9.3 | 987 | 4/24/2018 |
- Enabling using Dapper.Oracle when running under a profiled DbCommand.
Basically, any database profiler will decorate an oracle connection, so Dapper.Oracle now looks for a public property of type DbCommand when it detects that it is not working against a OracleCommand, and will recursively search for the actual DbCommand in order to set the Oracle-specific properties.