Skip to content

RepoDb Bulk Operations Full Support

Compare
Choose a tag to compare
@mikependon mikependon released this 01 Mar 19:27
· 1972 commits to master since this release

RepoDb.SqlServer.BulkOperations v1.0.4:

  • Referenced the latest version of RepoDb.Core (v1.10.10).
  • Fully supported the Bulk Operations (BulkDelete, BulkInsert, BulkMerge and BulkUpdate) for both System.Data.SqlClient and Microsoft.Data.SqlClient namespace.
  • Auto set the options to SqlBulkCopyOptions.KeepIdentity for BulkDelete, BulkMerge and BulkUpdate (if there an identity primary/column from the DB).
  • Used an underscore over dashes when composing the temporary/pseudo tables.
  • Added an extensive Integration Tests for all Bulk methods (both SDS and MDS namespaces).

RepoDb.Core v1.10.10:

  • Features: Full support to Bulk Operations (BulkDelete, BulkInsert, BulkMerge and BulkUpdate).
  • Enhancement: AsFieldsAsAliasFields - added left and right aliases.
  • Enhancement: XML Documentation updates for the SQL Statement Builders.
  • Enhancement: Add a Type extended method named IsNullable.
  • Bug: Solve the intermittent "NullReferenceException" when calling the Batch Operations (ie: InsertAll, MergeAll, UpdateAll). #392
  • Bug: The property handlers mapped via PropertyTypeHandlerMapper is failing if both NULLABLE and NON-NULLABLE property types are present in the class. #394