Skip to content

Releases: zzzprojects/EntityFramework-Plus

v1.7.10

12 Dec 02:45
cfa9657

Choose a tag to compare

Download the library here

PATCH

  • fixes # 285 BatchUpdate when an entity's field has a property of enum type … #286
  • NullReferenceException when using FromCache with a ObjectSet #278
  • QueryCache + DBNull.Value

v1.7.9

28 Nov 19:28

Choose a tag to compare

Download the library here

PATCH

  • Setting Byte[] to null cause sql exception #261

v1.7.8

19 Nov 22:21

Choose a tag to compare

Download the library here

PATCH

  • Audit: Null reference exception when calling remove #248
  • Batch Update: Enum Value + Oracle.ManagedDataAccess

v1.7.7

09 Nov 01:20

Choose a tag to compare

Download the library here

PATCH

  • Exception throw when using test EF context #256 (Require to use BatchUpdateManager.IsInMemoryQuery = true
  • Bulk update throws exception if I use Take in my query #266

v1.7.6

07 Nov 02:27

Choose a tag to compare

Download the library here

PATCH

  • FIXED: Delete() - Table schema not correctly determined on MySQL #258
  • FIXED: Setting Byte[] to null cause sql exception #261
  • FIXED: FutureQueries are incompatible with Effort.EF6 #260
  • FIXED: BatchUpdate using Generic Types #263

v1.7.5

26 Oct 18:16

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

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

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

Choose a tag to compare

Download the library here

PATCH

v1.7.1

26 Sep 16:23

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();
}