Skip to content

Releases: zzzprojects/EntityFramework-Plus

v1.8.11

23 Oct 01:49
47b7969

Choose a tag to compare

Download the library here

  • FIXED: FutureQueries are incompatible with Effort.EF6 #260
  • ADDED: Beta support for Query Cache with Redis for EF6
QueryCacheManager.Cache = QueryCacheManager.Cache = new RedisObjectCacheBeta(redisDatabase,
    objToSerialize => Newtonsoft.Json.JsonConvert.SerializeObject(objToSerialize),
    (entityType, serializedString) => Newtonsoft.Json.JsonConvert.DeserializeObject(serializedString, entityType));

Thank @vitorortuondo and @ericdagenais for your contribution

v1.8.10

15 Sep 18:42
c1ab852

Choose a tag to compare

Download the library here

  • MERGED: Added Hana support to BatchDelete and BatchUpdate. #408
  • MERGED: Npgsql+IncludeOptimized: fixes "System.NotSupportedException: CLR type System.Object isn't supported #407

Thank @vitorortuondo and @ericdagenais for your contribution

v1.8.9

27 Aug 22:58

Choose a tag to compare

Download the library here

  • FIXED: Issue with Query Filter in EF6 with Ignored Types

v1.8.8

23 Aug 20:24
5ab77cd

Choose a tag to compare

Download the library here

  • FIXED: When the EnumToStringConverter is set by the entity, after the batch update enumeration value is executed, the stored string is not a string. #396
  • FIXED: I think generated SQL statement can be changed(delete method) #378

v1.8.6

26 Jul 00:07
ab0166b

Choose a tag to compare

Download the library here

  • FIXED: Exception thrown finding ObjectQuery when running Batch Delete in Unit Test #387
  • FIXED: Batch delete does not work with DelegateDecompiler #386

v1.8.5

15 Jul 17:47
29acd6b

Choose a tag to compare

Download the library here

  • FIXED: Audit - NullReferenceException when deleting a record and using a property formatter #381

v1.8.4

05 Jul 19:09
29acd6b

Choose a tag to compare

Download the library here

  • FIXED: Issue with Audit + Relation when DataAnnotations option is enabled

v1.8.3

04 Jul 23:52
29acd6b

Choose a tag to compare

Download the library here

  • FIXED: Query Filter Global cache initialization problem with EF6 #368

v1.8.2

03 Jul 18:24
29acd6b

Choose a tag to compare

Download the library here

  • FIXED: Pomelo.MySQL + EFCore 2.1 Crash on UpdateAsync #376

v1.8.1

13 Jun 02:17
67dc3fa

Choose a tag to compare

Download the library here

  • MERGED: Fix IncludeOptimized function issue with EF Inheritance (TPT) #371

Thank you @yehiaelsayed for your contribution.