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

### Description When upgrading from 7.18.4 to 7.100.0.5, we observed one of our unit tests failing. Below is the basic structure of the test. I gradually changed Nuget package versions...

### Description WhereBulkContains does not work when database table inherit from another database table ### Exception ``` Exception message:An error occurred while executing the command definition. See the inner exception...

### Description When using value objects to wrap primitive types an error is thrown when the SQLite provider returns a string instead of a Guid. ### Exception If you are...

### Description In our code base we have a table that has a trigger on it that checks for a value set in the session context and skips the trigger...

### Description When using BulkSynchronizeAsync , I encounter an error when attempting to synchronize entities that include a computed column . The computed column is added correctly to the database...

### Description WhereBulkContains does not behave as I would have expected when filtering with a list containing duplicate entries. I expected filtered rows to appear at most once in the...

This is an ask for an explicit inner join extension to force inner joins between parent and child/children entities in a FK relationship. This feature request is a shameless plagiarization...

### Description When saving data to tables with audit logs (temporal tables), using BatchSaveChanges, ZZZ Projects uses ValidFrom/ValidTo/Version columns to determine optimistic concurrency behavior. In practice, since the table is...

### Description EF6 got an official update to version 6.5 and with this suggests using the Microsoft.Data.SqlClient provider: * https://github.com/dotnet/ef6/releases/tag/v6.5.0 * https://learn.microsoft.com/en-us/ef/ef6/what-is-new/microsoft-ef6-sqlserver However the BatchSaveChanges() methods do not support this...

### Description We use multiple database with different schemas with EF Core 7.0 We have a global command listener that changes the schema name before it executes. **Program.cs** DiagnosticListener.AllListeners.Subscribe(new GlobalListener());...