Skip to content

v3.12.11

Choose a tag to compare

@JonathanMagnan JonathanMagnan released this 03 Jul 15:43
· 882 commits to master since this release

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)