Dapper Plus Action Options
InsertIfNotExists
Insert entities only when no entities with the same key already exists in the destination.
DapperPlusManager.Entity<Order>() .InsertIfNotExists(); connection.BulkInsert(orders);
Author: ZZZ Projects
Insert entities only when no entities with the same key already exists in the destination.
DapperPlusManager.Entity<Order>() .InsertIfNotExists(); connection.BulkInsert(orders);