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

When using `UpdateFromQuery` in combination with TPH inheritance and owned types and a required `rowversion` property this exception is thrown: ``` Microsoft.Data.SqlClient.SqlException: 'The column 'RowVersion' was specified multiple times for...

### Description We are using Z.EntityFramework.Extensions.EFCore in a NET Maui project but we faced an issue in using batch extensions. They are working fine in windows but it throws an...

Given a temporal table (azure sql) with 1 primary record and 2 history records. When using the extension "TemporalTableAll()" to get all historical records, the result set returns 3 records,...

### Description I used other extension libraries to insert more than 800 pieces of data that took 500 milliseconds with pgsql and ef core 6.x, but using this library takes...

Hello, ### Description We found that static dictionaries from the `PublicExtensions` class are leaking in our project. They're getting filled up till we get Out of Memory kill. Could you...

### Description I am trying to `BulkInsert` a lot of rows in a table on a schedule. Whenever hangfire first executes the function, everything runs smoothly. However second time I...

**My issue:** I'm getting a foreign key constraint after performing this process: 1. Create a database context 2. Load objects 3. Dispose context, keep objects 4. Create new context, clear...

My table class looks like this: ``` public class ChannelsHistory { [Key] public string Id{ get; set; } public List ChannelsHistoryDailies { get; set; } = new List(); public List...

### Description I would like Bulk operations to use a non temporary table for all Bulk Operations (to avoid connection pinning). However enabling this option either globally or per operation...

### Description Bulk Insert throws an exception when the entity has a jsonb column. The jsonb column mapping is set in OnModelCreating. ### Exception ``` Exception message: The given key...