Dapper 2.1.35
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.
https://dapperlib.github.io/Dapper/
.NET Framework 4.6.1
- No dependencies.
.NET 5.0
- No dependencies.
.NET 7.0
- No dependencies.
.NET Standard 2.0
- System.Reflection.Emit.Lightweight (>= 4.7.0)