-
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 - DeleteAll
Description
DELETE ALL entities.
using (var connection = My.ConnectionFactory()) { connection.Open(); var isSuccess = connection.DeleteAll<Invoice>(); }