Z.Dapper.Plus 7.4.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Z.Dapper.Plus --version 7.4.0
NuGet\Install-Package Z.Dapper.Plus -Version 7.4.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Z.Dapper.Plus" Version="7.4.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Z.Dapper.Plus --version 7.4.0
#r "nuget: Z.Dapper.Plus, 7.4.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Z.Dapper.Plus as a Cake Addin
#addin nuget:?package=Z.Dapper.Plus&version=7.4.0

// Install Z.Dapper.Plus as a Cake Tool
#tool nuget:?package=Z.Dapper.Plus&version=7.4.0

Dapper Plus

Dapper Plus is a high-performance NuGet package providing essential extensions for Dapper, a popular micro-ORM for .NET. It is specifically designed to simplify and enhance CRUD (Create, Read, Update, Delete) operations in .NET applications.

The Dapper Plus library offers a variety of features for bulk operations, including BulkInsert, BulkDelete, BulkUpdate, and BulkMerge — features that are not provided by Dapper by default.

The primary advantages of using Dapper Plus include improved efficiency and speed in managing large volumes of data in .NET applications. Dapper Plus makes your applications faster, simpler to write, and easier to maintain, while preserving the versatility and performance benefits of Dapper.

Resources:

  • Official Website: For comprehensive information, updates, tutorials, and more, visit our official website. Learn how Dapper Plus can transform your application's data layer.
  • Contact Us: If you have any questions or require assistance, don't hesitate to reach out. We're here to help you maximize the benefits of Dapper Plus.
  • GitHub Issues: If you encounter an issue or have a feature request, let us know on GitHub. Your feedback is invaluable to us in improving Dapper Plus.

Supported .NET Versions

Dapper Plus is designed to work with a broad spectrum of .NET versions, including .NET Framework 4.0 and onwards, as well as .NET Standard 2.0 and beyond. Additionally, it is compatible with the most recent .NET versions.

We always recommand to use the latest version of Dapper Plus package. This ensures that your application benefits from the latest advancements in performance, security, and features provided by Dapper Plus.

Main Features

Dapper Plus provides a robust suite of bulk operations that can enhance performance when managing data. These features aim to handle thousands of entities with ease:

  • BulkInsert: This is the fastest method for inserting thousands of entities in your database, saving you valuable processing time.
  • BulkUpdate: This feature allows for rapid updates to thousands of entities, thereby maintaining data consistency and accuracy with impressive speed.
  • BulkDelete: This allows for the swift removal of thousands of entities, ensuring efficient data management.
  • BulkMerge (BulkUpsert): This feature combines insert and update operations into a single efficient transaction, making data management more streamlined.

For a more detailed explanation and examples of each operation, please visit our documentation page. It offers a wealth of information and practical examples to help you utilize Dapper Plus to its full potential.

Getting Started

One of the major advantages of Dapper Plus is its simplicity and ease of use, particularly for those already comfortable with Dapper. Suppose you need to insert thousands of customers into your database. In that case, a single line of code is all it takes:

connection.BulkInsert(customers);

This line of code utilizes the BulkInsert method that extends your IDbConnection, empowering you with the capability to perform bulk operations with ease.

Moreover, if your task involves inserting only the customers who do not already exist in your database, you can accomplish this using the InsertIfNotExists option:

connection.UseBulkOptions(options => { options.InsertIfNotExists = true;})
          .BulkInsert(customers);

With this approach, the operation becomes not only efficient but also intelligent, assisting you in maintaining the integrity of your data.

To explore various use-cases with the library, visit our collection of online examples:

These examples are designed to provide a practical understanding of Dapper Plus, showcasing its powerful features and flexible options in different scenarios. Use these to familiarize yourself with Dapper Plus and unlock its full potential in your applications.

Advanced Usage

Single Action

Methods prefixed with Single are included for FREE in Dapper Plus (doesn't require a license). These methods work with one entity at a time, allowing you to use the same customizations as the Bulk counterparts but without the associated performance enhancements.

The Single Action operations include:

  • SingleInsert
  • SingleUpdate
  • SingleDelete
  • SingleMerge

Here's an example of how to use the SingleInsert operation:

foreach(var customer in customers)
{
	connection.SingleInsert(customer);
}

In this example, the SingleInsert method is used within a loop to insert individual customers into the database. Although this approach doesn't provide the performance benefits of the bulk operations, it allows for granular control over each operation compared to write yourself a SQL statement.

Bulk Insert

The BulkInsert extension method allow you to insert multiple rows with Bulk Operations. This is ideal for scenarios where you have large amounts of data to insert into your database and need a performant way to do so.

Here are some of the common options available:

  • InsertIfNotExists: This option ensures only new entities that don't already exist in the database are inserted. This is great for maintaining data integrity and avoiding duplicate entries.
  • InsertKeepIdentity: This option allows you to insert specific values into an identity column from your entities. This is useful when you want to maintain the same identity values as in your source data.

Here is an example demonstrating the use of InsertIfNotExists option with the BulkInsert method:

connection.UseBulkOptions(options => { options.InsertIfNotExists = true;})
          .BulkInsert(customers);

In the example above, only those customers who do not already exist in the database will be inserted. This helps prevent duplication and ensures the insertion operation is as efficient as possible.

These options offer extensive control over your bulk insert operations, making Dapper Plus a powerful tool for managing large-scale data operations.

Bulk Update

The Dapper Plus BulkUpdate method provides an efficient and versatile approach for executing large-scale updates. You can configure the method to tailor your operations according to specific requirements.

Creating an instance context allows you to customize your mapping within a method if you need to use a custom key, or update a subset of your properties:

public void MyMethodName()
{
	var connection = new SqlConnection(FiddleHelper.GetConnectionStringSqlServer());

	var context = new DapperPlusContext(connection);
	context.Entity<Customer>().Key(x => new { x.Email }).Map(x => new { x.FirstName, x.LastName });

	context.BulkUpdate(customers);
}

In the example above, the BulkUpdate operation updates only the FirstName and LastName properties of the customers whose Email matches the entities in your list. This level of control and flexibility makes it possible to update specific columns based on custom keys, which can be very useful when dealing with complex business rules or performance optimization scenarios.

This is just one of the many ways Dapper Plus can be configured to meet a wide range of operational requirements.

Bulk Delete

The BulkDelete extension method enables you to perform efficient and large-scale deletion operations. By using this method, you can delete multiple rows simultaneously, saving both time and computational resources.

Asynchronous operation is also supported with BulkDelete, making it ideal for scenarios where non-blocking operation is critical for application performance. To perform a deletion asynchronously, use the BulkActionAsync method and call BulkDelete within:

var task = connection.BulkActionAsync(x => x.BulkDelete(customers), cancellationToken);

In the example above, the deletion operation for a list of customers is carried out asynchronously, enhancing the performance of your application by not blocking the main execution thread.

Asynchronous operations can significantly boost your application's performance when handling large amounts of data, making Dapper Plus an ideal choice for data-intensive .NET applications.

Bulk Merge / Bulk Upsert

The BulkMerge extension method allow you to execute Upsert operations using bulk operations. An Upsert (Update/Insert) operation updates existing rows and inserts non-existing rows.

Several configuration options are available for fine-tuning your BulkMerge operations:

  • ColumnPrimaryKeyExpression: Allows you to define a custom key to verify the existence of entities.
  • IgnoreOnMergeInsertExpression: Lets you ignore certain columns during the insert phase of the merge operation.
  • IgnoreOnMergeUpdateExpression: Allows you to ignore certain columns during the update phase of the merge operation.

Here is an example showcasing the use of these options:

public void MyMethodName()
{
	var connection = new SqlConnection(FiddleHelper.GetConnectionStringSqlServer());

	var context = new DapperPlusContext(connection);
	context.Entity<Customer>().UseBulkOptions(x => {
		options.ColumnPrimaryKeyExpression = x => new { x.Code };
		options.IgnoreOnMergeInsertExpression = x => new { x.UpdatedDate, x.UpdatedBy };
		options.IgnoreOnMergeUpdateExpression = x => new { x.CreatedDate, x.CreatedBy };
	});

	context.BulkMerge(customers);
}

In this example, BulkMerge is used to upsert a list of customers. The merge operation uses Code as the primary key. During the insertion phase, UpdatedDate and UpdatedBy properties are ignored. During the update phase, CreatedDate and CreatedBy properties are ignored.

Effectively utilizing these options, Dapper Plus facilitates robust and flexible upsert operations, enabling complex data manipulation with relative ease and efficiency.

Release Notes

For a detailed account of improvements, bug fixes, and updates in each version of Dapper Plus, we recommend consulting the official Release Notes in our GitHub repository.

The Release Notes provide critical insights about each release, describing new features, acknowledging resolved issues, and noting any breaking changes, if applicable. We strongly recommend reviewing these notes before upgrading to a newer version. This practice ensures that you take full advantage of new features and helps avoid unexpected issues.

License

Dapper Plus operates under a paid licensing model. To acquire a license, please visit our official Pricing Page on the Dapper Plus website. It offers a range of licensing options, so you can choose the one that best fits your needs and requirements.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (11)

Showing the top 5 NuGet packages that depend on Z.Dapper.Plus:

Package Downloads
Edakik.Shared.Library

Package Description

Leben

Set of programming tools and utilities used by Leben developers.

ClassicAh.Infrastructure.Database

Package Description

Api.Dapper.Utility

基于Dapper封装的DB操作基础层,DBUtility、DALFactory层

br-dapper-helper

Package Description

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Z.Dapper.Plus:

Repository Stars
zzzprojects/Dapper-Plus
Dapper Plus - High-Efficient Bulk Actions (Insert, Update, Delete, and Merge) for .NET
Version Downloads Last updated
7.4.0 5,427 3/26/2024
7.3.1 5,707 3/12/2024
7.3.0 12,213 2/13/2024
7.2.2 12,270 1/16/2024
7.2.1 11,829 12/12/2023
7.2.0 2,892 12/5/2023
7.1.0 4,588 11/28/2023
7.0.0 5,755 11/15/2023
6.0.5 16,241 10/17/2023
6.0.4 26,515 9/19/2023
6.0.3 6,693 9/11/2023
6.0.2 15,593 8/15/2023
6.0.1 15,709 7/11/2023
6.0.0 23,184 6/12/2023
5.0.4 73,532 5/16/2023
5.0.3 13,954 5/2/2023
5.0.2 9,568 4/17/2023
5.0.1 74,158 3/20/2023
5.0.0 101,812 2/20/2023
4.0.39 21,330 1/24/2023
4.0.38 5,325 1/17/2023
4.0.37 44,195 12/5/2022
4.0.36 4,673 11/22/2022
4.0.35 3,606 11/15/2022
4.0.34 32,730 10/10/2022
4.0.33 24,647 9/12/2022
4.0.32 32,706 8/16/2022
4.0.31 53,531 7/19/2022
4.0.30 28,619 6/14/2022
4.0.29 86,395 5/17/2022
4.0.28 15,550 4/26/2022
4.0.27 9,126 4/12/2022
4.0.26 144,556 3/15/2022
4.0.25 10,539 3/8/2022
4.0.24 20,838 2/22/2022
4.0.23 13,441 2/14/2022
4.0.22 69,360 1/18/2022
4.0.21 3,111 1/11/2022
4.0.20 51,616 12/14/2021
4.0.19 13,920 11/17/2021
4.0.18 6,915 11/9/2021
4.0.17 49,190 10/13/2021
4.0.16 25,378 9/29/2021
4.0.15 6,667 9/22/2021
4.0.14 7,605 9/15/2021
4.0.13 1,538 9/15/2021
4.0.12 13,807 9/8/2021
4.0.11 14,524 8/25/2021
4.0.10 55,012 8/17/2021
4.0.9 29,239 7/13/2021
4.0.8 49,013 7/5/2021
4.0.7 17,943 6/30/2021
4.0.6 14,188 6/14/2021
4.0.5 44,113 5/31/2021
4.0.4 39,822 5/19/2021
4.0.3 9,296 5/12/2021
4.0.2 28,438 4/19/2021
4.0.1 15,755 3/24/2021
4.0.0 5,672 3/16/2021
3.0.38 2,498 3/16/2021
3.0.37 2,274 3/15/2021
3.0.36 18,941 2/23/2021
3.0.35 2,504 2/19/2021
3.0.34 2,040 2/16/2021
3.0.33 26,581 1/27/2021
3.0.32 11,780 1/15/2021
3.0.31 14,648 1/13/2021
3.0.30 8,946 1/5/2021
3.0.29 82,504 12/16/2020
3.0.28 1,783 12/16/2020
3.0.27 1,992 12/14/2020
3.0.26 10,122 12/1/2020
3.0.25 10,512 11/27/2020
3.0.24 27,258 11/11/2020
3.0.23 49,518 11/4/2020
3.0.22 39,733 10/31/2020
3.0.21 485,900 10/11/2020
3.0.20 33,996 9/23/2020
3.0.19 6,102 9/14/2020
3.0.18 59,903 8/11/2020
3.0.17 9,650 7/27/2020
3.0.16 1,811 7/27/2020
3.0.15 7,741 7/12/2020
3.0.14 52,610 6/13/2020
3.0.13 7,940 6/9/2020
3.0.12 22,187 5/22/2020
3.0.11 4,632 5/19/2020
3.0.10 6,237 5/14/2020
3.0.9 92,081 4/14/2020
3.0.8 78,626 4/3/2020
3.0.7 12,212 3/22/2020
3.0.6 62,809 3/16/2020
3.0.5 48,218 2/17/2020
3.0.4 3,088 2/12/2020
3.0.3 28,977 2/11/2020
3.0.2 2,904 2/6/2020
3.0.1 32,321 1/21/2020
2.0.12 3,099 12/29/2019
2.0.11 12,824 12/4/2019
2.0.10 7,437 11/20/2019
2.0.9 5,093 11/12/2019
2.0.8 3,248 10/30/2019
2.0.7 21,922 10/24/2019
2.0.6 1,884 10/24/2019
2.0.5 2,405 10/21/2019
2.0.4 8,015 10/10/2019
2.0.3 1,807 10/10/2019
2.0.2 36,835 9/21/2019
2.0.1 20,821 9/20/2019
2.0.0 4,907 9/17/2019
2.0.0-beta1 1,611 9/16/2019
1.6.8 8,962 9/11/2019
1.6.7 2,127 9/10/2019
1.6.6 10,329 8/24/2019
1.6.5 114,597 7/28/2019
1.6.4 1,984 7/25/2019
1.6.3 2,404 7/25/2019
1.6.2 19,549 6/29/2019
1.6.1 3,408 6/27/2019
1.6.0 2,010 6/26/2019
1.5.9 62,860 5/30/2019
1.5.8 4,335 5/23/2019
1.5.7 7,395 5/20/2019
1.5.6 2,553 5/13/2019
1.5.5 2,090 5/12/2019
1.5.4 1,934 5/10/2019
1.5.3 15,445 4/30/2019
1.5.2 22,998 4/7/2019
1.5.1 22,417 3/30/2019
1.5.0 2,530 3/30/2019
1.4.11 3,839 3/28/2019
1.4.10 29,499 2/27/2019
1.4.10-beta1 1,689 3/28/2019
1.4.9 10,170 2/22/2019
1.4.8 3,181 2/13/2019
1.4.7 4,685 1/30/2019
1.4.6 13,282 1/10/2019
1.4.5 2,855 1/7/2019
1.4.4 3,368 12/30/2018
1.4.3 6,738 11/29/2018
1.4.2 2,336 11/29/2018
1.4.1 10,527 11/14/2018
1.4.0 15,337 10/28/2018
1.3.26 61,322 9/29/2018
1.3.25 11,658 8/30/2018
1.3.24 4,014 8/18/2018
1.3.23 2,443 8/16/2018
1.3.22 2,306 8/14/2018
1.3.21 5,346 7/31/2018
1.3.20 5,834 6/29/2018
1.3.19 3,961 6/19/2018
1.3.18 5,628 5/31/2018
1.3.17 5,967 5/1/2018
1.3.16 10,645 3/30/2018
1.3.15 2,334 3/29/2018
1.3.14 3,226 3/20/2018
1.3.13 2,749 3/14/2018
1.3.12 4,619 2/27/2018
1.3.11 3,924 2/8/2018
1.3.10 2,737 2/6/2018
1.3.9 2,379 2/5/2018
1.3.8 2,775 1/31/2018
1.3.7 10,143 1/16/2018
1.3.6 4,904 12/29/2017
1.3.5 22,385 11/30/2017
1.3.4 4,235 10/30/2017
1.3.3 3,922 9/30/2017
1.3.2 2,403 9/30/2017
1.3.1 3,383 9/13/2017
1.2.11 7,744 8/31/2017
1.2.10 2,251 8/29/2017
1.2.9 2,410 8/23/2017
1.2.8 2,778 8/13/2017
1.2.7 2,262 8/11/2017
1.2.6 2,733 8/2/2017
1.2.5 3,557 7/27/2017
1.2.4 2,246 7/27/2017
1.2.3 2,467 7/25/2017
1.2.1 2,414 7/18/2017
1.2.0 2,406 7/12/2017
1.1.5 3,402 6/29/2017