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 341 12/28/2021
0.1.27 240 12/27/2021
0.1.26 233 12/27/2021
0.1.25 235 12/27/2021
0.1.24 250 12/27/2021
0.1.23 248 12/26/2021
0.1.22 262 12/26/2021
0.1.21 242 12/26/2021
0.1.20 243 12/26/2021
0.1.19 252 12/26/2021
0.1.18 241 12/26/2021
0.1.17 218 12/26/2021
0.1.16 318 11/29/2021
0.1.15 246 11/29/2021
0.1.14 256 11/29/2021
0.1.13 242 11/29/2021
0.1.12 272 11/29/2021
0.1.11 1,510 11/29/2021
0.1.10 280 11/29/2021
0.1.5 1,098 11/20/2021
0.1.4 378 10/24/2021
0.1.3 410 10/23/2021
0.1.2 297 10/23/2021
0.1.1 313 10/23/2021
0.1.0 316 10/23/2021

Initialize