Releases: zzzprojects/EntityFramework-Plus
Releases · zzzprojects/EntityFramework-Plus
v1.6.17
v1.6.16
v1.6.13
v1.6.12
v1.6.11
v1.6.10
Download the library here
- ADDED: Batch Delete - Added
UseTableLock
option - ADDED: Batch Update- Added
UseTableLock
option - ADDED: Query Future - Added
AllowQueryBatch
option
QueryFutureManager.AllowQueryBatch = false;
ctx.Activities.Where(a => a.DateCreated < d).Delete(delete => delete.UseTableLock = false );
v1.6.9
v1.6.8
Download the library here
- ADDED: Async method for Query Future (Issue #197)
- FIXED: Missing line for cast (Issue #135)
- FIXED: Query Future DataReader was causing some problem in EF Core (Issue #187)
- FIXED: Batch Delete Executing at wrong place (Issue #198)
- FIXED: MySQL escape for BatchUpdate (Issue #201)
- FIXED: GetModel for custom connection (Issue #202)
v1.6.7
Download the library here
- ADDED: QueryFutureManager.ExecuteBatch(ctx) (Issue #190)
- ADDED: QueryFutureValue && Implicit conversion (Pull #189)
- FIXED: Include Filter && Case (Issue #135)
- FIXED: Batch Update with property without using a calculated value (Issue #191)
Thank you @Immelstorn for your contribution with the pull #189