Dapper 2.1.21

Dapper

Dapper is a simple micro-ORM used to simplify working with ADO.NET; if you like SQL but dislike the boilerplate of ADO.NET: Dapper is for you!

As a simple example:

string region = ...
var customers = connection.Query<Customer>(
    "select * from Customers where Region = @region", // SQL
    new { region } // parameters
    ).AsList();

But all the execute/single-row/scalar/async/etc functionality you would expect: is there as extension methods on your DbConnection.

See GitHub for more information and examples.

No packages depend on Dapper.

.NET Framework 4.6.1

  • No dependencies.

.NET 5.0

  • No dependencies.

.NET 7.0

  • No dependencies.

.NET Standard 2.0

Version Downloads Last updated
2.1.21 1 12/20/2025
2.0.151 1 12/20/2025
2.0.30 1 12/19/2025
1.50.5 1 12/20/2025
1.50.0-beta6 1 12/20/2025
1.50.0-beta4 1 12/20/2025
1.29.0 1 12/19/2025
1.27.0 1 12/20/2025
1.23.0 1 12/20/2025
1.21.0 1 12/20/2025
1.4.0 1 12/19/2025
1.3.0 1 12/20/2025