Skip to content

Releases: Basim108/sql-bulk-service-postgresql

1.3.2

05 Mar 16:42
Compare
Choose a tag to compare

Enhanced log of sql-execution timing and sql-command size (information log level)

1.3.1

05 Mar 15:38
Compare
Choose a tag to compare

Enhanced log of sql-execution timing and sql-command size (information log level)

1.3.0

05 Mar 14:34
Compare
Choose a tag to compare
  • Optimized all sql commands generation with fixing boxing problems with sql-parameter values of int, short, float, double, and decimal types
  • Optimized sql-delete command builder with where in clause

1.2.0

03 Mar 08:54
Compare
Choose a tag to compare

Added support for convert expressions in mapping entity properties on table columns.
Now it is possible to convert mapping properties like this:
entityProfile.HasProperty<TestEntity, long>(x => (long)x.Id); // where property Id is int and table column will be bigint

entityProfile.HasProperty<TestEntity, long>(x => (long)x.State); // where property State is enum flags and table column will be bigint

1.1.7

01 Mar 18:53
Compare
Choose a tag to compare

BulkServiceOptions now accessable through service collection by IBulkServiceOptions