Skip to content

Releases: zzzprojects/EntityFramework-Plus

v1.6.17

30 Aug 00:46
Compare
Choose a tag to compare

Download the library here

  • ADDED: BatchDelete support for SQLite provider to EF Core (Issue #212)
  • ADDED: BatchUpdate support for SQLite provider to EF Core (Issue #212)
  • FIXED: Issue with Conditional Expression for BatchUpdate (Issue #195)

v1.6.16

29 Aug 14:30
Compare
Choose a tag to compare

Download the library here

  • ADDED: BatchDelete support for SQLite provider (Issue #212)
  • ADDED: BatchUpdate support for SQLite provider (Issue #212)

v1.6.13

29 Aug 00:24
Compare
Choose a tag to compare

Download the library here

  • FIXED: Issue with DbType on EF6 (Issue #219)
  • FIXED: Issue with DbType on EF Core (Issue #221)

v1.6.12

21 Aug 16:16
Compare
Choose a tag to compare

Download the library here

  • FIXED: BatchUpdate && DateTime on SQL Server (Issue #209)
  • FIXED: BatchUpdate && Oracle (Issue #210)
  • FIXED: Auditing && Relationship (Issue #216)
  • FIXED: EF Core InMemory for Query Future (Issue #218)

v1.6.11

18 Aug 00:14
Compare
Choose a tag to compare

Download the library here

  • ADDED: Support to Entity Framework Core 2.0 (Issue #182, #213)

Thank you @tvoisin for your contribution (Pull #184)

v1.6.10

14 Aug 15:17
Compare
Choose a tag to compare

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

09 Aug 17:36
Compare
Choose a tag to compare

Download the library here

  • FIXED: BatchDelete now use InterceptionContext for EF6
  • FIXED: BatchUpdate now use InterceptionContext for EF6

v1.6.8

07 Aug 23:27
Compare
Choose a tag to compare

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

25 Jul 17:16
Compare
Choose a tag to compare

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

v1.6.6

16 Jul 23:52
Compare
Choose a tag to compare

Download the library here

  • ADDED: Support to MySQL for .NET Core (Issue #182)