ShadyNagy.DapperManager
0.1.2
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package ShadyNagy.DapperManager --version 0.1.2
NuGet\Install-Package ShadyNagy.DapperManager -Version 0.1.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ShadyNagy.DapperManager" Version="0.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ShadyNagy.DapperManager --version 0.1.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ShadyNagy.DapperManager, 0.1.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ShadyNagy.DapperManager as a Cake Addin #addin nuget:?package=ShadyNagy.DapperManager&version=0.1.2 // Install ShadyNagy.DapperManager as a Cake Tool #tool nuget:?package=ShadyNagy.DapperManager&version=0.1.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
ShadyNagy.DapperManager
Dapper ORM
A NuGet library that will extend your IDbConnection interface with awesome extensions!
Dapper Usage is
string sql = "INSERT INTO Customers (CustomerName) Values (@CustomerName);";
using (var connection = My.ConnectionFactory())
{
var affectedRows = connection.Execute(sql, new {CustomerName = "Mark"});
var customers = connection.Query<Customer>("Select * FROM CUSTOMERS).ToList();
}
Package ShadyNagy.DapperManager
Usage is
var customers = await oracleDapperService.GetFromAsync<Customer>("EMPLOYEES");
- More information on the tests ShadyNagy.DapperManager.Tests
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.1
- Dapper (>= 2.0.90)
- Microsoft.Extensions.Logging (>= 5.0.0)
- Oracle.ManagedDataAccess.Core (>= 3.21.3)
- ShadyNagy.DapperInMemory (>= 0.1.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.1.29 | 359 | 12/28/2021 |
0.1.27 | 257 | 12/27/2021 |
0.1.26 | 249 | 12/27/2021 |
0.1.25 | 251 | 12/27/2021 |
0.1.24 | 268 | 12/27/2021 |
0.1.23 | 265 | 12/26/2021 |
0.1.22 | 279 | 12/26/2021 |
0.1.21 | 259 | 12/26/2021 |
0.1.20 | 258 | 12/26/2021 |
0.1.19 | 269 | 12/26/2021 |
0.1.18 | 255 | 12/26/2021 |
0.1.17 | 235 | 12/26/2021 |
0.1.16 | 332 | 11/29/2021 |
0.1.15 | 262 | 11/29/2021 |
0.1.14 | 274 | 11/29/2021 |
0.1.13 | 258 | 11/29/2021 |
0.1.12 | 292 | 11/29/2021 |
0.1.11 | 1,526 | 11/29/2021 |
0.1.10 | 297 | 11/29/2021 |
0.1.5 | 1,117 | 11/20/2021 |
0.1.4 | 394 | 10/24/2021 |
0.1.3 | 427 | 10/23/2021 |
0.1.2 | 316 | 10/23/2021 |
0.1.1 | 332 | 10/23/2021 |
0.1.0 | 332 | 10/23/2021 |
Initialize