Skip to main content
  1. Tags/

Dapper

Using Dapper for Data Access and Repository Pattern

Deep Dive · Dec 1, 2024 · 9 min read
Introduction # In this article, we will explore how the Contact Management Application integrates Dapper for efficient data access. Dapper is a micro-ORM (Object-Relational Mapper) that excels in performance by directly interacting with SQL. We will focus on how Dapper is utilized within the Repository Pattern to ensure clean, maintainable, and efficient access to the database. Additionally, we will explore how Dapper works in tandem with the Unit of Work pattern to manage transactions.
Using Dapper for Data Access and Repository Pattern