Skip to content

Releases: zzzprojects/EntityFramework-Plus

v1.7.5

26 Oct 18:16
Compare
Choose a tag to compare

Download the library here

PATCH

  • FIXED: Fix get results directly #250
  • FIXED: EF Core 2 bug with Future calls. #254

Thank you @ksmithRenweb for your contribution (Pull #250)

v1.7.4

16 Oct 14:32
Compare
Choose a tag to compare

Download the library here

PATCH

  • FIXED: Mathematical operations inside aggregate functions are broken since version 1.6.7 (EF6) #249

v1.7.3

12 Oct 02:33
Compare
Choose a tag to compare

Download the library here

PATCH

  • FIXED: EF6 Query Filter - With type added used with Type Discovery (Not added through DbSet)

v1.7.2

03 Oct 02:38
Compare
Choose a tag to compare

Download the library here

PATCH

v1.7.1

26 Sep 16:23
Compare
Choose a tag to compare

Download the library here

PATCH

  • FIXED: Audit | Retrieve Deleted Audit #244
  • FIXED: EFCore: DateTime in wrong format for sql server to interpret correctly. #243
  • ADDED: EF6: QueryFilter - QueryFilterManager.AllowPropertyFilter = true now allow to filter single (non-collection) property.
QueryFilterManager.AllowPropertyFilter = true;

using (var ctx = new EntityContext())
{
    ctx.Filter<Invoice>(q => q.Where(x => !x.IsDeleted));
    ctx.Filter<InvoiceItem>(q => q.Where(x => !x.IsDeleted));

    var list = ctx.InvoiceItems.Where(x => x.Invoice.Total > 400).Include("Invoice").ToList();
}

v1.7.0

24 Sep 23:13
Compare
Choose a tag to compare

Download the library here

MINOR

  • ADDED: EF+ Query DbSetFilter for EF6 (Same code as previously before Query Filter switched to interceptor) (Issue #231 #234 )

PATCH

  • FIXED: Collection.Count capability doesn't work (Issue #242)

v1.6.21

13 Sep 15:55
Compare
Choose a tag to compare

Download the library here

  • FIXED: EF6 - Query filter issue with missing line for Global Filter (Issue #234)
  • ADDED: First attempt to support LinqKit

v1.6.20

11 Sep 00:22
Compare
Choose a tag to compare

Download the library here

  • FIXED: EF6 - Query filter with null (Issue #214)
  • ADDED: Audit EntityCurrent state has been added
  • FIXED: EF Core Release (Issue #231)
  • FIXED: Batch Delete Issue (Issue #215)

v1.6.19

06 Sep 18:58
Compare
Choose a tag to compare

Download the library here

  • FIXED: Issue with Conditional Expression for BatchUpdate (Issue #226 && Pull #228 )

Thank you @panizza for your contribution

v1.6.18

06 Sep 00:01
Compare
Choose a tag to compare

Download the library here

  • ADDED: Support to Memory Effort (Pull #227)
  • FIXED: Issue with Conditional Expression for BatchUpdate (Issue #226)