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 Dapper

About 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

ID Version Target Framework
System.Reflection.Emit.Lightweight 4.7.0 .NETStandard2.0
Details
NuGet
2026-02-20 18:51:08 +03:30
102
Sam Saffron,Marc Gravell,Nick Craver
540 KiB
Assets (2)
Versions (2) View all
2.1.35 2026-02-20
2.1.66 2026-02-04