Dapper (2.1.35)
Published 2026-02-20 18:51:08 +03:30 by kayer
Installation
dotnet nuget add source --name kayer --username your_username --password your_token dotnet add package --source kayer --version 2.1.35 DapperAbout this package
A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc..
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.
Dependencies
Details
2026-02-20 18:51:08 +03:30
Assets (2)
Versions (2)
View all
NuGet
103
Sam Saffron,Marc Gravell,Nick Craver
540 KiB
dapper.2.1.35.nupkg
539 KiB
dapper.nuspec
1.4 KiB