Dapper.Data 1.11.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Dapper.Data --version 1.11.0
NuGet\Install-Package Dapper.Data -Version 1.11.0
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="Dapper.Data" Version="1.11.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Dapper.Data --version 1.11.0
#r "nuget: Dapper.Data, 1.11.0"
#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 Dapper.Data as a Cake Addin
#addin nuget:?package=Dapper.Data&version=1.11.0

// Install Dapper.Data as a Cake Tool
#tool nuget:?package=Dapper.Data&version=1.11.0

Trivial micro-orm implemented on Dapper, streamlines connection and transaction management while preserving flexibility and usability.
***************************************
// To create an instance of database context inherit DbContext
class TestDb : DbContext
{
private const string ConnectionName = "DefaultConnection";

private TestDb()
: base(ConnectionName)
{ }
}

// execute multiple statatements using same connection
// connection and transaction (if needed)
var db = new TestDb();
db.Batch(s =>
{
s.BeginTransaction();
try
{
s.Execute([Your query]);
s.CommitTransaction();
}
catch
{
s.RollbackTransaction();
throw;
}
});

// using it with ninject
kernel.Bind<IDbContext>().To<TestDb>().InSingletonScope();

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 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
2.0.0 28,851 7/25/2017
1.14.1 16,580 11/17/2015
1.14.0 23,905 7/21/2014
1.11.0 1,714 7/18/2014
1.8.0 1,860 11/2/2013
1.7.0 1,735 11/2/2013
1.6.0 1,860 4/10/2013
1.4.0 2,206 10/12/2012
1.2.0 2,054 10/10/2012
1.0.0 1,907 10/5/2012

* 1.11
* Using new version of Dapper
* added commandTimeout to api
* added CommandDefinition to api
* added QueryMultiple
* Query<T> will check if T is IDictionary<string, object> and will return data as IDictionary<string, object>
* 1.7
* Enable overriding service using RegisterService
* 1.6
* Refactored common common commands in to IDbCommand interface
* Added multi mapping query support
* 1.4
* DbServiceProvider now implements IServiceProvider
* For is obsolete use GetService to retreave services
* Included T4 template to use on dataset to create services. T4 name must match dataset name. Also when adding dataset clear its custom tool property. The dataset is used only as GUI designer for your POCO(s) and services. The T4 will create one interface per table and a one interface that implement's IDbService and one base class that inherit's DbService eposing all queries defined in dataset as methods.
* 1.0
* Streamlined connection and transaction management
* Batch query processing
* Can use ninject
* Thread safe
* Connection can be defined in .config file