AsyncPoco 1.1.2

dotnet add package AsyncPoco --version 1.1.2
NuGet\Install-Package AsyncPoco -Version 1.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="AsyncPoco" Version="1.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AsyncPoco --version 1.1.2
#r "nuget: AsyncPoco, 1.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 AsyncPoco as a Cake Addin
#addin nuget:?package=AsyncPoco&version=1.1.2

// Install AsyncPoco as a Cake Tool
#tool nuget:?package=AsyncPoco&version=1.1.2

A fully asynchronous fork of the popular PetaPoco micro-ORM, supporting data access using the TAP pattern and async/await keywords introduced in C# 5.0 and VB 11. All PetaPoco methods have been converted to their async equivalents (FetchAsync, InsertAsync, ExecuteAsync, etc.) where the underlying ADO.NET calls have async equivalents. Supports SQL Server, SQL Server CE, MySQL, and PostgreSQL.

Product Compatible and additional computed target framework versions.
.NET Framework 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.

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.2 408 3/16/2015
1.1.1 1,375 11/2/2014
1.1.0 109 10/14/2014
1.1.0-beta1 216 10/8/2014
1.0.1 633 6/12/2014
1.0.0 140 2/3/2014
0.9.0 96 1/28/2014

1.1.2 - Allow further modifying query after .SQL is called (thanks @rupe120), virtual methods for better extensibility (thanks @qstarin)
1.1.1 - Better support for LONG and LONG RAW types in Oracle (thanks @pjlammertyn)
1.1.0 - Support for composite keys (thanks @schotime), nullable enums, and ComputedColumn attribute (thanks @JustinStolle)
1.0.1 - Fixed reported potential NullReferenceException in identifying DB platform