Skip to content

Releases: zzzprojects/EntityFramework-Plus

v1.4.0

13 Sep 05:05

Choose a tag to compare

Download the library here

EF+ Audit

  • ADDED: Default value for CreatedBy field
  • ADDED: AuditEntryFactory && AuditEntryPropertyFactory for better customization

EF+ Query Filter (EF6)

  • MAJOR REVAMP: All the code has been re-writing to use instead interceptor
    • FIXED: Include method now filtered
    • FIXED: Lazy loading now filtered

v1.3.12

03 Sep 19:31

Choose a tag to compare

Download the library here

EF+ Batch Delete

  • FIXED: Where clause with constant false && folding constant to false (Harcoded issue from v1.3.9)

EF+ Batch Update

  • FIXED: Where clause with constant false && folding constant to false (Harcoded issue from v1.3.9)

v1.3.11

25 Aug 03:25

Choose a tag to compare

Download the library here

_EF+ Audit

  • ADDED: Where clause to retrieve more easily audit
using (var ctx = new TestContext())
{
    ctx.AuditEntries.Where(item);
    ctx.AuditEntries.Where<Entity_Basic>(item.ID);
    ctx.AuditEntries.Where<Entity_Basic>(101);
}

v1.3.10

23 Aug 20:31

Choose a tag to compare

Download the library here

EF+ Batch Delete

  • ADDED: Support for MySQL for EF5 && EF6

EF+ Batch Update

  • ADDED: Support for MySQL for EF5 && EF6

v1.3.9

21 Aug 02:03

Choose a tag to compare

Download the library here

EF+ Batch Delete

  • FIXED: Where clause with constant false && folding constant to false

EF+ Batch Update

  • FIXED: Where clause with constant false && folding constant to false

v1.3.8

13 Aug 19:52

Choose a tag to compare

Download the library here

_EF+ Query Cache

  • FIXED: Added expression for .NET Core to make the key more unique. The SQL generated by EF Core is not unique like EF5 and EF6 do since more than one query is executed.

v1.3.7

13 Aug 17:48

Choose a tag to compare

Download the library here

EF+ Batch Delete

  • FIXED: Under .NET Core NET Standard 1.3, The code was trying to load the wrong assembly (from RC2)

EF+ Batch Update

  • FIXED: Under .NET Core NET Standard 1.3, The code was trying to load the wrong assembly (from RC2)

v1.3.6

10 Aug 00:40

Choose a tag to compare

Download the library here

EF+ Batch Delete

  • FIXED: GetModelName method for Database First

EF+ Batch Update

  • FIXED: GetModelName method for Database First

v1.3.5

05 Aug 19:29

Choose a tag to compare

Download the library here

EF+ Query Cache

  • ADDED: Property IncludeConnectionInCacheKey
  • FIXED: Server && Database name are directly taken from the connection in case ChangeDatabase method is invoked.

v1.3.4

31 Jul 18:11

Choose a tag to compare

Download the library here

EF+ Query Cache

  • ADDED: Connection String is now part of Cache Key

EF+ Query IncludeOptimized

  • ADDED: AllowQueryBatch property