Skip to content

Releases: zzzprojects/Bulk-Operations

v3.0.41

14 Jul 00:53
fb4c6a9
Compare
Choose a tag to compare

Download the library here

  • UPDATED: Monthly Trial Release

Trial unlocked until the end of August

v3.0.38

14 Jun 17:45
fb4c6a9
Compare
Choose a tag to compare

Download the library here

  • UPDATED: Monthly Trial Release

Trial unlocked until the end of July

v3.0.37

19 May 16:57
fb4c6a9
Compare
Choose a tag to compare

Download the library here

  • ADDED: Error in Bulk Merge While Using ZonedDateTime Property for Dapper Plus #66

Trial unlocked until the end of June

v3.0.36

14 May 00:02
fb4c6a9
Compare
Choose a tag to compare

Download the library here

  • UPDATED: Monthly Trial Release

Trial unlocked until the end of June

v3.0.35

19 Apr 22:38
fb4c6a9
Compare
Choose a tag to compare

Download the library here

  • UPDATED: Monthly Trial Release

Trial unlocked until the end of May

v3.0.34

30 Mar 22:24
bf91865
Compare
Choose a tag to compare

Download the library here

  • FIXED: AutoMapOutputIdentity not working with Microsoft.Data.Sqlite #65

Trial unlocked until the end of April

v3.0.33

25 Mar 02:20
bf91865
Compare
Choose a tag to compare

Download the library here

  • ADDED: AutoMapColumnBuilder option to add some configuration during the automapping.
using (var bulk = new BulkOperation<EntitySimple>())
{
	bulk.Connection = connection;
	bulk.DestinationTableName = "EntitySimples";
	bulk.AutoMapColumnBuilder = (sourceName, column) =>
	{
	    if (sourceName == nameof(EntitySimple.ID))
	    {
	        column.IsIdentity = true;
	        column.Direction = ColumnMappingDirectionType.Output;
	    }
	};
	
	bulk.BulkInsert(list);
}

Trial unlocked until the end of April

v3.0.32

24 Mar 04:42
bf91865
Compare
Choose a tag to compare

Download the library here

  • FIXED: BulkSynchronize for SQLite when the datasource is a DataReader
  • ADDED: DestinationSchemaName option to specify a schema

Trial unlocked until the end of April

v3.0.31

17 Mar 02:13
bf91865
Compare
Choose a tag to compare

Download the library here

  • ADDED: Internal options for debugging a specific issue

Trial unlocked until the end of April

v3.0.30

16 Mar 03:46
36e0987
Compare
Choose a tag to compare

Download the library here

  • UPDATED: Monthly Trial Release

Trial unlocked until the end of April