You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Micro-ORM implemented on Dapper, provides CRUD helpers
30
32
* Dapper.SqlBuilder
31
33
* Component for building SQL queries dynamically and composably
32
-
* Dapper.StrongName
33
-
* High-performance micro-ORM supporting MySQL, Sqlite, SqlICE, and Firebird
34
+
35
+
Sponsors
36
+
--------
37
+
38
+
Dapper was originally developed for and by Stack Overflow, but is F/OSS. Sponsorship is welcome and invited - see the sponsor link at the top of the page.
39
+
A huge thanks to everyone (individuals or organisations) who have sponsored Dapper, but a massive thanks in particular to:
40
+
41
+
-[AWS](https://github.com/aws) who sponsored Dapper from Oct 2023 via the [.NET on AWS Open Source Software Fund](https://github.com/aws/dotnet-foss)
34
42
35
43
Features
36
44
--------
37
-
Dapper is a [NuGet library](https://www.nuget.org/packages/Dapper) that you can add in to your project that will extend your `IDbConnection` interface.
45
+
Dapper is a [NuGet library](https://www.nuget.org/packages/Dapper) that you can add in to your project that will enhance your ADO.NET connections via
46
+
extension methods on your `DbConnection` instance. This provides a simple and efficient API for invoking SQL, with support for both synchronous and
47
+
asynchronous data access, and allows bother buffered and non-buffered queries.
38
48
39
-
It provides 3 helpers:
49
+
It provides multiple helpers, but the key APIs are:
40
50
41
-
Execute a query and map the results to a strongly typed List
0 commit comments