Skip to content

Releases: zzzprojects/EntityFramework-Extensions

v3.12.20

28 Aug 14:55

Choose a tag to compare

Download the library here

FIXED: Mapping issue for relationship One to Many with IncludeGraph

PRO Version unlocked for the current month (August)

v3.12.19

15 Aug 15:01

Choose a tag to compare

Download the library here

ADDED: Support for DeleteFromQuery && UpdateFromQuery for Oracle (Issue #46)

PRO Version unlocked for the current month (August)

v3.12.18

11 Aug 15:50

Choose a tag to compare

Download the library here

FIXED: Issue with IncludeGraph option && BulkMerge for Many to Many scenario

PRO Version unlocked for the current month (August)

v3.12.17

06 Aug 23:24

Choose a tag to compare

Download the library here

FIXED: Issue with column type utinyint, usmallint, umediumint, ubigint (Issue #45)

PRO Version unlocked for the current month (August)

v3.12.16

03 Aug 20:11

Choose a tag to compare

Download the library here

FIXED: Issue with column type uint (Issue #45)
FIXED: Issue with Database First GetModel method when a custom connection is used

PRO Version unlocked for the current month (August)

v3.12.15

25 Jul 14:53

Choose a tag to compare

Download the library here

FIXED: Issue with SQL Server for the column size for type: Text, NText, and Image

PRO Version unlocked for the current month (August)

v3.12.14

12 Jul 11:01

Choose a tag to compare

Download the library here

FIXED: DeleteFromQuery and UpdateFromQuery are now case insensitive like other Bulk Operations.

PRO Version unlocked for the current month (July)

v3.12.13

04 Jul 18:59

Choose a tag to compare

Download the library here

IMPROVED: [ctx].RefreshModel method now also clear information cache about column mapping

PRO Version unlocked for the current month (July)

v3.12.12

04 Jul 16:23

Choose a tag to compare

Download the library here

IMPROVED: [ctx].RefreshModel method now also clear information table and accessors from the cache. Calling this method will refresh everything from the cache that could be related to the model.

PRO Version unlocked for the current month (July)

v3.12.11

03 Jul 15:43

Choose a tag to compare

Download the library here

ADDED: StreamSize option. This option allows materializing only an amount of items at a time. Work with BulkInsert, BulkUpdate, BulkDelete, and BulkMerge

Example

// By Instance
ctx.BulkInsert(enumerables, operation => operation.StreamSize= 2000);

// Global
EntityFrameworkManager.BulkOperationBuilder = operation => operation.StreamSize = 2000; 

PRO Version unlocked for the current month (July)