EntityFramework-Extensions
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.
### Description I can't force output for unmodified rows during merge. My goal is have the same state in memory and database after merge. ### Fiddle https://dotnetfiddle.net/4gUqmr
### Description During (some) failed updates, notably where [the concurrency checks fail](https://entityframework-extensions.net/concurrency), the thrown exception has a list of entities that failed, making it very easy to retry the update...
### Description This is a follow-up issue/question to #542 . We set up a column mappping for shadow properties which are automatically set when performing any bulk operation like `BulkInsert`,...
I am using IncludeOptimize and BulkSaveChanges together with EFCore 7.0 in my project. I can see memory usage increase over time and figured out that this is caused by using...
### Description I have a table (Proceedings) where i want to update a value and for that i do a bulk merge/or bulkUpdate for that matter. However when I execute...
### Description I'm struggling to get BulkSynchronize to work in a simple TPC scenario in EFCore 7. Do you have a sample of a TPC or TPT scenario you can...
### Description expression: new Produto { IdUnidadeDeEstocagem = (Guid)value } Method: Produtos.UpdateFromQuery(expression); ### Exception Exception message: Npgsql.PostgresException: '42703: column b.id does not exist Stack trace: at Npgsql.Internal.NpgsqlConnector.d.MoveNext() at System.Threading.Tasks.ValueTask`1.get_Result() at...
### Description HasColumnName on entities throws exception when HasColumnName is used on either owned entity or main entity. This is a bit urgent :( ### Exception If you are seeing...
### Description We have recently updated to EFCore 8 and finding an error with UpdateFromQuery where the SQL generated is not valid The generated SQL looks like this ` exec...
One of the, in my option, larger limitations with EF at the moment is the lack for conditional singleton inserts. My current case is as follows: I'm allowing users to...