AsyncPoco 1.1.2

There is a newer version of this package available.
See the version list below for details.
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.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on AsyncPoco:

Package Downloads
StaTypPocoQueries.AsyncPoco

AsyncPoco bindings for StaTypPocoQueries. It translates Linq Expressions to SQL 'where' clause. Makes it safer to work with AsyncPoco. Generates sql and parameters to be passed to Database class methods such as Query, Single, Delete etc.

Cql.Core.PetaPoco

A common library for PetaPoco.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.2 84,673 7/15/2019
2.0.1 31,841 7/13/2018
2.0.0 7,917 4/14/2018
2.0.0-pre2 923 4/10/2018
2.0.0-pre1 967 3/27/2018
1.2.1 2,152 3/16/2018
1.2.0 12,336 8/14/2016
1.1.2 17,172 3/16/2015
1.1.1 3,095 11/2/2014
1.1.0 1,385 10/14/2014
1.1.0-beta1 1,301 10/8/2014
1.0.1 2,132 6/12/2014
1.0.0 1,964 2/3/2014
0.9.0 1,558 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