Skip to content

Releases: zzzprojects/EntityFramework-Extensions

v3.13.3

04 Oct 00:09

Choose a tag to compare

Download the library here

PATCH

  • ADDED: Support to DevArt MySql

PRO Version unlocked for the current month (October)

v3.13.2

30 Sep 23:56

Choose a tag to compare

Download the library here

PRO Version unlocked for the current month (October)

v3.13.1

27 Sep 22:23

Choose a tag to compare

Download the library here

BATCH

FIXED: 22P03: incorrect binary data format #56
FIXED: BulkSaveChanges + Audit was not working correctly for SQL Server

PRO Version unlocked for the current month (September)

v3.13.0

25 Sep 02:50

Choose a tag to compare

Download the library here

MINOR

FIXED: Concurrent modification of an entity does not throw DbUpdateConcurrencyException when BulkSaveChanges() is called #53

PRO Version unlocked for the current month (September)

v3.12.27

18 Sep 15:10

Choose a tag to compare

Download the library here

FIXED: Issue with Concurrency column (Issue #51)
FIXED: Added SByte to MySQL as supported type

PRO Version unlocked for the current month (September)

v3.12.26

12 Sep 15:55

Choose a tag to compare

Download the library here

FIXED: Issue on SQL Server with '.' (dot) in schema table for BulkSaveChanges. Example: [A.B].[B.C]
FIXED: Issue with complex type in an expression for properties that are not mapped.

PRO Version unlocked for the current month (September)

v3.12.24

06 Sep 12:59

Choose a tag to compare

Download the library here

FIXED: Issue with NotMapped and string type property for InputExpression, OutputExpression, InputOutputExpression

PRO Version unlocked for the current month (September)

v3.12.23

31 Aug 14:49

Choose a tag to compare

Download the library here

FIXED: Issue with complex type property for InputExpression, OutputExpression, InputOutputExpression when custom name used in ModelBuilder (Issue #49)
FIXED: Issue with when custom name used in ModelBuilder for InputExpression, OutputExpression, InputOutputExpression
ADDED: NotMapped DataAnnotation support for complex type used in InputExpression, OutputExpression, InputOutputExpression when custom name used in ModelBuilder

ctx.BulkUpdate(list, operation =>
{
    operation.ColumnInputExpression = m => new {m.Id, m.IntColumn, m.Complex}; // m.Complex is a complex type
});

PRO Version unlocked for the current month (September)

v3.12.22

31 Aug 00:21

Choose a tag to compare

Download the library here

PRO Version unlocked for the current month (September)

v3.12.21

30 Aug 14:15

Choose a tag to compare

Download the library here

ADDED: Support to complex type property for InputExpression, OutputExpression, InputOutputExpression (Issue #49)

ctx.BulkUpdate(list, operation =>
{
    operation.ColumnInputExpression = m => new {m.Id, m.IntColumn, m.Complex}; // m.Complex is a complex type
});

PRO Version unlocked for the current month (August)