EntityFramework-Extensions icon indicating copy to clipboard operation
EntityFramework-Extensions copied to clipboard

Entity Framework Bulk Operations | Improve Entity Framework performance with Bulk SaveChanges, Insert, update, delete and merge for SQL Server, SQL Azure, SQL Compact, MySQL and SQLite.

Results 92 EntityFramework-Extensions issues
Sort by recently updated
recently updated
newest added

We are using database first approach with entity framework core. We found one bug that if database column has default value and when we do bulk insert library do not...

BulkSynchronize - `ColumnSynchronizeDeleteKeySubsetExpression` feature work with sql server 2008,but not work with mysql 8. It will delete other rows expect inserted. Example code: ```c# class Program { static async System.Threading.Tasks.Task...

BulkDeleteAsync- `DeleteMatchedAndConditionExpression` feature work with sql server 2008,but not work with mysql 8. Similar to https://github.com/zzzprojects/EntityFramework-Extensions/issues/389 Further technical details EF version: 3.1.13 EF Extensions version:3.1.13 Database Pomelo.EntityFrameworkCore.MySql 3.2.4

### Description When using BulkInsert, I want to add as little as possible to the change tracker (preferably nothing). However when working with related items, I cannot get it to...

### Description I have a large collection of objects with related objects that I want to store. This should not happen in-memory as the source and target databases are quite...

Since v4.0.87 the DeleteFromQuery function has not worked in my application. It works fine in v4.0.86. Exception Message: A timeout error occured. Please increase the timeout globally: ctx.Database.CommandTimeout = 60;...

### Description BulkMergeAsync works fine at runtime (using EFCore.PostgreSQL). However within tests (using EFCore.InMemory) it throws the below: ### Exception ``` System.TypeInitializationException: "The type initializer for '' threw an exception."...

### Description Has custom type for enum in postgresql . Try to perform update this field and receive an exception ### Exception 42804: column "Status" is of type customenumtype but...

Hello @JonathanMagnan, We have faced an issue with bulk synchronize. Bulk operation fails with error message: > Table 'C:\WINDOWS\SERVIC~1\NETWOR~1\AppData\Local\Temp\#sql13ac_27_2b7' is marked as crashed and should be repaired We're using 10.3.11-MariaDB....