How to use SQL Bulk Copy with Dapper .Net ?
I am working with Dapper .net for Bulk insert operation in SQL Tables. I am thinking to user SQKBulk copy with Dapper .Net but don't have any experience How to use SqlbulkCopy with Dapper .Net your help is Highly appreciated Alex Erygin It is not good idea to use dapper for bulk insert, because there it will not fast. The better case for this is use of SqlBulkCopy class. But if you want use Dapper for bulk insert, you can find solution here . 来源: https://stackoverflow.com/questions/29070108/how-to-use-sql-bulk-copy-with-dapper-net