Releases: zzzprojects/EntityFramework-Extensions
Releases · zzzprojects/EntityFramework-Extensions
5.2.6
5.2.5
Download the library here
- IMPROVED: Property mapped with default value sql that have a value are now populated in the database like
SaveChanges
on update (the issue still exists on insert, fix is in progress) - IMPROVED: Value generation resolution for
MySQL
Trial unlocked until the end of August
5.2.4
5.2.3
5.2.2
Download the library here
- FIXED: Issue with SQLiteConnection for DevArt that was no longer supported due to some internal name change in DevArt
- FIXED: Issue with
InMemory
SQLite for "timestamp" column - FIXED: Issue with
PostgreSQL
withBulkSynchronize
+ output values
Trial unlocked until the end of July
5.2.0
Download the library here
- MAJOR CHANGE: For EF Core:
- Improved in the logic for value generated && computed
- Improved performance when a value is generated by
Entity Framework
. - Improved the mapping for multiple scenarios
- Fixed some issues with Identity + Oracle
- FIXED: Added an error message for #423
- ADDED: Option
UseStopwatchForSqlExecutingTime
,StopwatchForSqlExecutingTime
to calculate the time that taken by the database only. - FIXED: Problem with bulk insert when class has a property with another class mapped with the EF Core OwnsOne #396 (Fixed the part for OwnedOne in another table)
Trial unlocked until the end of July
5.1.41
Download the library here
- FIXED: Issue in
PostgreSQL
when retrieving theRowsAffected
and there is no column to output - ADDED: Option
DictionaryEqualityComparer
for EF Core for people that overrideGetHashCode
. The option require the optionUnsafeMode
to be enabled
context.BulkSaveChanges(option =>
{
option.DictionaryEqualityComparer = new CustomEqualityComparer();
option.UnsafeMode = true;
});
Trial unlocked until the end of July
5.1.40
Download the library here
- ADDED: Support for
DeleteByKey
andDeleteRangeByKey
to SQLite - ADDED: For EF6, the option
TransactionIsolationLevel
for whenever an internal transaction is created, the isolation level provided will be used - UPDATED: Monthly Trial Release
Trial unlocked until the end of July
5.1.39
Download the library here
- ADDED: Support for key generated through EF itself such as
string
property which aguid
is generated/assigned (EF Core) - ADDED: Options
UseTempDbForColumnEncrypted
to use the tempdb for encrypted column resolution (cannot be used by default as there is no guarantee that the certificate exists in this database)
Trial unlocked until the end of June