Releases: zzzprojects/EntityFramework-Plus
Releases · zzzprojects/EntityFramework-Plus
v3.0.18 (EF Core)
- FIXED: Issue with InMemory and IncludeFilter compatibility Part#2 (The v3.0.17 was not throwing an error but was not either working correctly)
IMPORTANT
- For EF Core 3.x, use the latest EF Plus v3.x version
- For EF Core 2.x, use the latest EF Plus v2.x version
v3.0.17 (EF Core)
- FIXED: Issue with InMemory and IncludeFilter compatibility
IMPORTANT
- For EF Core 3.x, use the latest EF Plus v3.x version
- For EF Core 2.x, use the latest EF Plus v2.x version
v1.12.3
- ADDED: EntityFrameworkPlusManager.IsCommunity. When true, all paid features from EF Extensions and C# Eval libraries will throw an error when used.
v1.12.1
- ADDED: Comparing Query Cache to EFCache - can we get best of both worlds? #541
- ADDED: Intercept batch update #529
QueryCacheManager.IsAutoExpireCacheEnabled
Online Example: https://dotnetfiddle.net/3WHMGk
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
QueryCacheManager.IsAutoExpireCacheEnabled = true;
}
BatchUpdateManager.Hook
Online Example: https://dotnetfiddle.net/xsmVVy
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
BatchUpdateManager.Hook<Customer>(c => new Customer() { ModifiedDate = DateTime.Now });
}
v1.12.0
- ADDED: Dependencies to minimum Entity Framework 6.1 for EF6 NET40 and NET45
v3.0.16 (EF Core)
- ADDED: As discussed here, the dependency to EF Extensions.
IMPORTANT
- For EF Core 3.x, use the latest EF Plus v3.x version
- For EF Core 2.x, use the latest EF Plus v2.x version
v3.0.15 (EF Core)
- UPDATED: Package description on NuGet to make it more clear which version to use for EF Core 2.x and EF Core 3.x
IMPORTANT
- For EF Core 3.x, use the latest EF Plus v3.x version
- For EF Core 2.x, use the latest EF Plus v2.x version
v3.0.14 (EF Core)
- FIXED: InvalidCastException when update with where in #524 (Part II)
IMPORTANT
- For EF Core 3.x, use the latest EF Plus v3.x version
- For EF Core 2.x, use the latest EF Plus v2.x version
v3.0.13 (EF Core)
- FIXED: InvalidCastException when update with where in #524 (Part II)
v3.0.12 (EF Core)
- FIXED: InvalidCastException when update with where in #524