-
Dapper
- Getting Started
- Methods
- Parameters
- Result
- Utilities
-
Dapper Plus
- Getting Started
- Methods
-
Dapper Transaction
- Getting Started
-
Dapper Contrib
- Getting Started
- Methods
- Data Annotations
Dapper Tutorial Dapper Contrib - GetAll
Description
GET ALL entities.
using (var connection = My.ConnectionFactory()) { connection.Open(); var invoices = connection.GetAll<Invoice>().ToList(); }