ShadyNagy.DapperManager 0.1.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package ShadyNagy.DapperManager --version 0.1.3                
NuGet\Install-Package ShadyNagy.DapperManager -Version 0.1.3                
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.3" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ShadyNagy.DapperManager --version 0.1.3                
#r "nuget: ShadyNagy.DapperManager, 0.1.3"                
#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.3

// Install ShadyNagy.DapperManager as a Cake Tool
#tool nuget:?package=ShadyNagy.DapperManager&version=0.1.3                

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 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.

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 339 12/28/2021
0.1.27 239 12/27/2021
0.1.26 232 12/27/2021
0.1.25 233 12/27/2021
0.1.24 248 12/27/2021
0.1.23 247 12/26/2021
0.1.22 261 12/26/2021
0.1.21 240 12/26/2021
0.1.20 241 12/26/2021
0.1.19 251 12/26/2021
0.1.18 240 12/26/2021
0.1.17 216 12/26/2021
0.1.16 316 11/29/2021
0.1.15 245 11/29/2021
0.1.14 255 11/29/2021
0.1.13 240 11/29/2021
0.1.12 270 11/29/2021
0.1.11 1,509 11/29/2021
0.1.10 279 11/29/2021
0.1.5 1,096 11/20/2021
0.1.4 377 10/24/2021
0.1.3 409 10/23/2021
0.1.2 295 10/23/2021
0.1.1 312 10/23/2021
0.1.0 314 10/23/2021

Initialize