SqlBulkHelpers 1.2.0
See the version list below for details.
dotnet add package SqlBulkHelpers --version 1.2.0
NuGet\Install-Package SqlBulkHelpers -Version 1.2.0
<PackageReference Include="SqlBulkHelpers" Version="1.2.0" />
paket add SqlBulkHelpers --version 1.2.0
#r "nuget: SqlBulkHelpers, 1.2.0"
// Install SqlBulkHelpers as a Cake Addin #addin nuget:?package=SqlBulkHelpers&version=1.2.0 // Install SqlBulkHelpers as a Cake Tool #tool nuget:?package=SqlBulkHelpers&version=1.2.0
A library for easy, efficient and high performance bulk insert and update of data, into a Sql Database, from .Net applications. By leveraging the power of the SqlBulkCopy classes with added support for Identity primary key table columns this library provides a greatly simplified interface to process Identity based Entities with Bulk Performance with the wide compatibility of .NetStandard 2.0.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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 | 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. |
-
.NETStandard 2.0
- Microsoft.Data.SqlClient (>= 4.0.0)
- Newtonsoft.Json (>= 13.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.4.5 | 3,510 | 8/6/2024 |
2.4.4 | 2,501 | 3/22/2024 |
2.4.3 | 6,330 | 12/15/2023 |
2.4.2 | 307 | 11/7/2023 |
2.4.1 | 180 | 10/24/2023 |
2.4.0 | 1,352 | 9/11/2023 |
2.3.1 | 1,254 | 9/2/2023 |
2.3.0 | 357 | 8/8/2023 |
2.2.3 | 187 | 8/4/2023 |
2.2.2 | 1,735 | 5/25/2023 |
2.1.0 | 394 | 3/3/2023 |
2.0.0 | 383 | 2/16/2023 |
1.4.0 | 2,102 | 10/1/2022 |
1.3.0 | 420 | 9/28/2022 |
1.2.0 | 594 | 7/14/2022 |
1.1.0 | 2,661 | 12/2/2021 |
1.0.7 | 294 | 12/2/2021 |
1.0.6.2 | 604 | 12/10/2020 |
1.0.6.1 | 401 | 12/10/2020 |
1.0.6 | 492 | 12/9/2020 |
1.0.5 | 465 | 12/9/2020 |
1.0.4 | 808 | 11/1/2019 |
1.0.2 | 509 | 10/29/2019 |
- Merge PR to enable support Fully Qualified Table Names - Thanks to @simelis
Prior Relese Notes:
- Migrated the library to use `Microsoft.Data.SqlClient` vs legacy `System.Data.SqlClient` which is no longer being
updated with most improvements, especially performance and edge case bugs. From v1.1 onward we will only use `Microsoft.Data.SqlClient`.
- Added support to optimize Identity value updates with native performance (no reflection) by implementing ISqlBulkHelperIdentitySetter on the model classes.
- Fix to correctly support fully qualified table names with schema.
- Ensure BulkCopy also uses timeout parameter.
- Add Overloads for easier initialization of SqlMergeMatchQualifierExpression class.
- Breaking change; removed internal Default static references so that I can eliminate any dependency on Configuration framework for better support in .Net Core; New Caching helper and simple constructor with Sql Connection String replace this.
- Added support to specify SqlCommand Timeout Seconds when initializing the Sql Bulk Helper class, instead of relying on the connection wide setting from the Connection string.
- Added support for custom match qualifiers to be specified even if bulk inserting/updating data with Identity columns. This addresses some edge use cases whereby data syncing may be taking place and Identities are used to differentiate data from multiple sources, but the actual merge matches needs to occur on unique fields of the source system.
- Simplified initialization and constructors to provide easier use -- especially if SqlConnection/SqlTransaction already exists and ConnectionString is not available. It's still recommended to use ISqlBulkHelpersConnectionProvider however, this may not be congruent with existin code bases so now the use of existing Sql Connection & Transaction is encapsulated.
- Provided in-memory cache implementation to help manage caching of Schema DB Loaders for performance.
- Improved pattern for Schema DB Loader management and encourage use of new Caching class; previously its possible that this was being re-loaded multiple times unnecessarily due to relying on internal behavior instead of managing it as a static/singleton.
- Added more Integration Tests for Constructors and Connections, as well as the new DB Schema Loader caching implementation.
- Fixed bug in dynamic initialization of SqlBulkHelpersConnectionProvider and SqlBulkHelpersDBSchemaLoader when not using the Default instances that automtically load the connection string from the application configuration setting.