Releases: Basim108/sql-bulk-service-postgresql
Releases · Basim108/sql-bulk-service-postgresql
1.3.2
1.3.1
1.3.0
1.2.0
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