EntityFramework-Plus

Entity Framework Plus extends your DbContext with must-haves features: Include Filter, Auditing, Caching, Query Future, Batch Delete, Batch Update, and more

MIT License

Stars
2.2K

Bot releases are hidden (Show)

EntityFramework-Plus - v3.0.24

Published by JonathanMagnan almost 5 years ago

Download the library here

  • UPDATE: Dependencies version update
EntityFramework-Plus - v3.0.23 (EF Core)

Published by JonathanMagnan almost 5 years ago

Download the library here

  • ADDED: Support to EF Core 3.1-preview3
EntityFramework-Plus - v3.0.22 (EF Core)

Published by JonathanMagnan almost 5 years ago

Download the library here

  • FIXED: PostgreSQL: DateTime to DateTimeOffset conversion error #543
EntityFramework-Plus - v3.0.21 (EF Core)

Published by JonathanMagnan almost 5 years ago

Download the library here

  • ADDED: Support to EF Core v3.1.0-preview2.19525.5
EntityFramework-Plus - v3.0.20 (EF Core)

Published by JonathanMagnan almost 5 years ago

  • ADDED: EntityFrameworkPlusManager.IsCommunity. When true, all paid features from EF Extensions and C# Eval libraries will throw an error when used.
EntityFramework-Plus - v1.12.3

Published by JonathanMagnan almost 5 years ago

  • ADDED: EntityFrameworkPlusManager.IsCommunity. When true, all paid features from EF Extensions and C# Eval libraries will throw an error when used.
EntityFramework-Plus - v3.0.18 (EF Core)

Published by JonathanMagnan almost 5 years ago

  • 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
EntityFramework-Plus - v1.12.1

Published by JonathanMagnan almost 5 years ago

  • 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 });
}
EntityFramework-Plus - v1.12.0

Published by JonathanMagnan almost 5 years ago

  • ADDED: Dependencies to minimum Entity Framework 6.1 for EF6 NET40 and NET45
EntityFramework-Plus - v3.0.17 (EF Core)

Published by JonathanMagnan almost 5 years ago

  • 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
EntityFramework-Plus - v1.11.0

Published by JonathanMagnan almost 5 years ago

Download the library here

EntityFramework-Plus - v2.0.16 (EF Core)

Published by JonathanMagnan almost 5 years ago


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
EntityFramework-Plus - v3.0.16 (EF Core)

Published by JonathanMagnan almost 5 years ago


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
EntityFramework-Plus - v3.0.15 (EF Core)

Published by JonathanMagnan almost 5 years ago

  • 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
EntityFramework-Plus - v3.0.14 (EF Core)

Published by JonathanMagnan about 5 years ago

  • 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
EntityFramework-Plus - v3.0.13 (EF Core)

Published by JonathanMagnan about 5 years ago

  • FIXED: InvalidCastException when update with where in #524 (Part II)
EntityFramework-Plus - v3.0.12 (EF Core)

Published by JonathanMagnan about 5 years ago

  • FIXED: InvalidCastException when update with where in #524
EntityFramework-Plus - v1.10.3

Published by JonathanMagnan about 5 years ago

Download the library here

FIXED: Issue with IncludeFilter + IEnumerable<T> property
FIXED: Fix BatchUpdate for Pomelo.MySql #517

EntityFramework-Plus - 3.0.9-preview9-01

Published by JonathanMagnan about 5 years ago

Download the library here

  • ADDED: Support to EF Core v3.x preview 9
EntityFramework-Plus - v1.10.2

Published by JonathanMagnan about 5 years ago

Download the library here

ADDED: support to DevArt PostgreSQL to Batch Delete and Batch Update

Related Projects