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 `BulkSaveChanges` throws too general exception upon error: `Exception`. E.g. when an `SqlException` occurs then this is happening: Operation | Explanation | Exception structure -- | -- | --...

### Description It would be useful if we could **indicate** to `QueryHookManager` that we have already registered `QueryHookCommandInterceptor`; or it would be even better if we could **manually register** `QueryHookCommandInterceptor`...

### Description I have a list o classes like: ```csharp List lic = items.Select(c => new ClassName { Id = c.Id, Name= c.Name, Score= 7.800000190734863, SomeOtherId= c.SomeOtherId }).ToList(); dbContext.BulkInsert(lic); }...

This is a follow-up on #263 as it is the same query, but with the newest update I get a different exception: ``` The sequence contains no elements. at System.Linq.Enumerable.First[TSource](IEnumerable`1...

I'm trying to make CSV importer with more than 1mil records. These records are often duplicated in the file and i try to use merge to ignore these duplicities. Problem...

Hi, I'm using **BulkSaveChanges** in a transaction like this: ``` using (var scope = new TransactionScope(TransactionScopeOption.Required, TransactionScopeAsyncFlowOption.Enabled)) { var context = ((IObjectContextAdapter)this).ObjectContext; ... await context.BulkSaveChangesAsync(cancellationToken); scope.Complete(); } ``` And this...

First, thanks for this excellent product. I contract for the University of Chicago and they recently acquired a license. Problem: I have a LARGE and complex graph I wish to...

Greetings, I have a logs table containing 101 entries and I do something similar to: ``` IQueryable logsToRemove = dbSet.Logs .OrderBy(g => g.CreationDateTime) .Take(51); logsToRemove.DeleteFromQuery(); ``` using the MSSQL provider....

Hi ZZZ, I'm using your library with SQLITE and I'm running into some issues because sometimes the database is locked by another concurrent operation. When this happens, I get an...

### Description I have a problem with implementing ConcurrencyException as described on following page: https://entityframework-extensions.net/concurrency the operation.AllowConcurrency does not exist in EF Core Extensions I'm using Z.EntityFramework.Extensions.EFCore 6.15.1 How to...