Releases: zzzprojects/EntityFramework-Plus
Releases · zzzprojects/EntityFramework-Plus
v1.7.5
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
Download the library here
PATCH
- FIXED: Mathematical operations inside aggregate functions are broken since version 1.6.7 (EF6) #249
v1.7.3
Download the library here
PATCH
- FIXED: EF6 Query Filter - With type added used with
Type Discovery
(Not added through DbSet)
v1.7.2
Download the library here
PATCH
v1.7.1
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
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
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
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
Download the library here
- FIXED: Issue with Conditional Expression for BatchUpdate (Issue #226 && Pull #228 )
Thank you @panizza for your contribution
v1.6.18
Download the library here
- ADDED: Support to Memory Effort (Pull #227)
- FIXED: Issue with Conditional Expression for BatchUpdate (Issue #226)