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 trying to BulkSyncronize a table from one database to another, InvalidCastException is thrown. The table is created using code-first and is mapped to a class hierarchie. I've...

### Description When attempting to use InsertFromQuery with the Microsoft InMemory database it throws the exception below. Our unit tests at present are based on the InMemory database. We are...

### Description We have an _optional_ Owned Entity Type configured for an entity. Example: `User` has an optional owned entity type `Address`. We use `BulkMergeAsync` to insert/update new `User` entities...

### Description When adding unit tests for a business logic where touching `BulkMerge` with `IncludeGraph` feature, we got the following exceptions. Surprisingly, the production code works and behaves as what...

When i'm using BulkSaveChanges on Oracle 12c database, I see in the trace file the following query appearing ``` SELECT C1, C2, C3 FROM (SELECT ACC.COLUMN_NAME C1 ,ACC.CONSTRAINT_NAME C2 ,AC.CONSTRAINT_TYPE...

### Description Hi! We have a GUID-Column in some of our entities which we want to insert via BulkInsert. Those Columns are defined with ValueGeneredOnAdd() as shown below. ``` public...

Wenn i use the BulkInsert im get the The Provider could not be resolved Exeption. ### Exception Exception message:The Provider could not be resolved. You must explicitly set the Provider....

### Description The Npgsql Ef Core library made some breaking changes for the default mapping of DateTime. See [Release Notes](https://www.npgsql.org/efcore/release-notes/6.0.html#breaking-changes). When I try a BulkInsert it fails, however a regular...

Are you planning to release a version compatible with EF Core 6 RC1?

### Description When the primary key of a table contains a computed column, BulkInsert tries to insert into it and sql throws, I've tried to work around it with: ```...