Skip to content

Releases: zzzprojects/EntityFramework-Plus

v3.0.23 (EF Core)

21 Nov 15:15

Choose a tag to compare

Download the library here

  • ADDED: Support to EF Core 3.1-preview3

v3.0.22 (EF Core)

05 Nov 14:19

Choose a tag to compare

Download the library here

  • FIXED: PostgreSQL: DateTime to DateTimeOffset conversion error #543

v3.0.21 (EF Core)

03 Nov 14:19

Choose a tag to compare

Download the library here

  • ADDED: Support to EF Core v3.1.0-preview2.19525.5

v3.0.20 (EF Core)

30 Oct 14:18

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.

v3.0.18 (EF Core)

29 Oct 19:26

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

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

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

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

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

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