Releases: Kros-sk/Kros.KORM
Releases · Kros-sk/Kros.KORM
Kros.KORM 7.0.0 📦
Kros.KORM 6.2.0 📦
Kros.KORM 6.1.0
Changes
- Add suport for
string.Compare()
method. By @tereziavrabkova in #104.
Kros.KORM 6.0.0 📦
Changes
⚠️ Breaking changes
- Remove targeting for the old .NET 4.6 framework (DbTransaction does not contain async variants in this framework)
- Interface
IQueryProvider
was change. MethodExecuteInTransactionAsync
has a new signatureTask ExecuteInTransactionAsync(Func<CancellationToken, Task> action, CancellationToken cancellationToken = default);
Kros.KORM 5.1.1 📦
Kros.KORM 5.1.0 📦
Kros.KORM 5.0.0 📦
Breaking changes ❗
Until now, NULL
values in database were just skipped – nothing was done with them. This had two consequences:
- If the property was initialized in constructor to some non-null/non-zero value, this value remained the same after the mapping. So
NULL
in database did not change it. NowNULL
value in database is mapped to entity. The property, depending on its type, is either set tonull
, or0
, or to defaultly initializedstruct
. - Converter was not called for database
NULL
. So it was not possible to changeNULL
value in database to something meaningful in entity. Now converter is called withnull
as the input value.
Kros.KORM 4.4.3 📦
Changes
- Set transaction command timeout. @MarianMatula (#96)
Kros.KORM 4.4.1 📦
What's Changed
- Remove fix for OData query by @satano in #93
- Execute with temp table extension with command timeout. by @JanoSlivka in #94
Full Changelog: v4.3.3...v4.4.1