Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 622 Bytes

NuGet.md

File metadata and controls

21 lines (14 loc) · 622 Bytes

Extend your IDbConnection with high-performance bulk operations

Url

Example

DapperPlusManager.Entity<Invoice>().Identity(x => x.InvoiceID, true);
DapperPlusManager.Entity<InvoiceItem>().Identity(x => x.InvoiceItemID, true);

// ...code...

connection.BulkInsert(invoices, x => x.InvoiceMeta, x => x.InvoiceItems);

Try it: https://dotnetfiddle.net/LBfItU