Top

How to use Dapper in ASP.Net Core

September 17, 2018

Via: InfoWorld

Dapper is an open source, lightweight “micro ORM” that supports many databases including SQL Server, MySQL, SQLite, SQL CE, and Firebird. By using Dapper in your applications you can simplify data access while ensuring high performance. In previous articles here I provided an introduction to Dapper and examined the Dapper Extensions Library.

In this article I will show how Dapper’s support for asynchronous operations can be leveraged in ASP.Net Core.

Read More on InfoWorld