Dapper Plus Bulk Merge Discover how to upsert multiple rows
Description
Dapper Plus is a 3rd party library that offers some very useful extensions to Dapper. One of these extensions is the BulkMerge method that can be used to merge an object into the database, similar to an UPSERT
operation.
- UPSERT refers to operations that update or insert data into a database table.
- If the row already exists in the table, then it is updated.
- If the row does not exist in the table, then it is inserted.
- The UPSERT operation is useful for ensuring that data is synchronized between two systems.
With BulkMerge
, you can:
Bulk Merge helps you merge your entities in a single command. This can come in handy for various reasons, such as reducing database roundtrips or improving performance by avoiding entity lookups.
Example - Merge Single
You can use the BulkMerge
method to merge (insert or update) a single record. The following example merges a customer record into the Customers table.
DapperPlusManager.Entity<Customer>().Table("Customers"); using (var connection = new SqlConnection(FiddleHelper.GetConnectionStringSqlServerW3Schools())) { connection.BulkMerge(new List<Customer>() { new Customer() { CustomerName = "ExampleBulkMerge", ContactName = "Example Name :" + 1}}); }
In the above example, If the customer already exists in the table, then it will be updated, but if the customer does not exist in the table, then it will be inserted as a new record.
Try it: .NET Core | .NET Framework
Example - Merge Many
The BulkMerge
method can merge multiple records with a single database call can significantly improve performance. It merges multiple entities with Bulk Operation. The following example merges a list of customers into the Customers table.
DapperPlusManager.Entity<Customer>().Table("Customers"); using (var connection = new SqlConnection(FiddleHelper.GetConnectionStringSqlServerW3Schools())) { connection.BulkMerge(customers); }
Try it: .NET Core | .NET Framework
Example - Merge with relation (One to One)
BulkMerge
allows you to merge related entities to the database in one database operation. It is especially useful when merging a large number of entities that have relationships with each other.
To use BulkMerge
when entities have a relationship, simply specify the relationship between the entities when you configure the bulk operation.
The following example shows how to use the BulkMerge
with a one-to-one relationship between the entities.
DapperPlusManager.Entity<Supplier>().Table("Suppliers").Identity(x => x.SupplierID); DapperPlusManager.Entity<Product>().Table("Products").Identity(x => x.ProductID); using (var connection = new SqlConnection(FiddleHelper.GetConnectionStringSqlServerW3Schools())) { connection.BulkMerge(suppliers).ThenForEach(x => x.Product.SupplierID = x.SupplierID).ThenBulkMerge(x => x.Product); }
Try it: .NET Core | .NET Framework
Example - Merge with relation (One to Many)
Dapper Plus also allows you to merge a list of entities with a one-to-many relationship with Bulk Operation as shown in the following example.
DapperPlusManager.Entity<Supplier>().Table("Suppliers").Identity(x => x.SupplierID); DapperPlusManager.Entity<Product>().Table("Products").Identity(x => x.ProductID); using (var connection = new SqlConnection(FiddleHelper.GetConnectionStringSqlServerW3Schools())) { connection.BulkMerge(suppliers).ThenForEach(x => x.Products.ForEach(y => y.SupplierID = x.SupplierID)).ThenBulkMerge(x => x.Products); }
Try it: .NET Core | .NET Framework
Related Articles
ZZZ Projects