8.103.0.0
·
2 commits
to master
since this release
Download the library here
- ADDED: Support to
InsertStagingTableFilterFormula
for PostgreSQL - UPDATED: Monthly Trial Release
Breaking Change
The ForceValueGeneratedStrategy option has been replaced by the ExplicitValueResolutionMode option.
See the following code to understand how to replace the old options with the new options:
// The option `options.ForceValueGeneratedStrategy = ValueGeneratedStrategyType.OnAdd` has been replaced by:
options.ExplicitValueResolutionMode = Z.EntityFramework.Extensions.ExplicitValueResolutionMode.AlwaysKeepValueOnInsert;
// The option `options.ForceValueGeneratedStrategy = ValueGeneratedStrategyType.OnUpdate` has been replaced by
options.ExplicitValueResolutionMode = Z.EntityFramework.Extensions.ExplicitValueResolutionMode.AlwaysKeepValueOnUpdate;
// The option `options.ForceValueGeneratedStrategy = ValueGeneratedStrategyType.OnAddOrUpdate` has been replaced by:
options.ExplicitValueResolutionMode = Z.EntityFramework.Extensions.ExplicitValueResolutionMode.AlwaysKeepValueOnInsertOrUpdate;
You can find more about this breaking change in this article: How EFE Bulk Extensions handle explicit value in EF Core?
Trial unlocked until the end of July
NOTE: EF Extensions uses EFCore-Pinned Versionning conventions