Releases: zzzprojects/Bulk-Operations
Releases · zzzprojects/Bulk-Operations
v3.0.36
Download the library here
- UPDATED: Monthly Trial Release
Trial unlocked until the end of June
v3.0.35
Download the library here
- UPDATED: Monthly Trial Release
Trial unlocked until the end of May
v3.0.34
Download the library here
- FIXED: AutoMapOutputIdentity not working with Microsoft.Data.Sqlite #65
Trial unlocked until the end of April
v3.0.33
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
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
Download the library here
- ADDED: Internal options for debugging a specific issue
Trial unlocked until the end of April
v3.0.30
Download the library here
- UPDATED: Monthly Trial Release
Trial unlocked until the end of April
v3.0.29
Download the library here
- UPDATED: Monthly Trial Release
Trial unlocked until the end of March
v3.0.28
Download the library here
- ADDED: Support to
BulkSynchronize
and many options related to this for SQLite
(Bulk Synchronize not deleting rows on SQLite #61)
Trial unlocked until the end of February
v3.0.27
Download the library here
- FIXED: BulkInsert/BulkMerge in combination with Npgsql (PostgreSQL) has weird behaviour #59
Trial unlocked until the end of February