Skip to content

Releases: zzzprojects/EntityFramework-Plus

v3.0.18 (EF Core)

29 Oct 19:26
Compare
Choose a tag to compare
  • 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)

25 Oct 14:21
Compare
Choose a tag to compare
  • 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

30 Oct 14:18
Compare
Choose a tag to compare
  • ADDED: EntityFrameworkPlusManager.IsCommunity. When true, all paid features from EF Extensions and C# Eval libraries will throw an error when used.

v1.12.1

28 Oct 03:28
Compare
Choose a tag to compare
  • 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

27 Oct 18:16
Compare
Choose a tag to compare
  • ADDED: Dependencies to minimum Entity Framework 6.1 for EF6 NET40 and NET45

v3.0.16 (EF Core)

23 Oct 13:25
d2be564
Compare
Choose a tag to compare

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)

21 Oct 18:19
d2be564
Compare
Choose a tag to compare
  • 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)

17 Oct 15:33
d2be564
Compare
Choose a tag to compare
  • 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)

06 Oct 14:41
d2be564
Compare
Choose a tag to compare
  • FIXED: InvalidCastException when update with where in #524 (Part II)

v3.0.12 (EF Core)

05 Oct 17:05
d2be564
Compare
Choose a tag to compare
  • FIXED: InvalidCastException when update with where in #524