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 EFE throws a generic exception when using option `UseAudit = true` with `BulkMergeAsync`. ### Exception `System.Exception: Error: 0029: Oops! A general error has occurred. Please report the issue...

### Description If you have entities which inherit from each other, WhereBulkContains throws an exception. ### Exception ``` Exception message: Oops! Untyped list is not compatible with multiple inheritance entity...

### Description If I have a parent/child relationship: ```` class Parent { [Key] public Guid Id { get; set; } public string ExternalId { get; set; } public virtual ICollection...

### Description Im currently testing the 6.14.3 version of this lib. Especially the BulkSaveChanges operation. ### Exception Once executed i receive this error... ```info: Microsoft.EntityFrameworkCore.Database.Command[0] -- Failed with error: Duplicate...

### Description Null reference exception when running UpdateFromQuery `dcs.CurrentContext.SABENTIS_COMPANY .Where(i => i.cif.Contains(" ")) .UpdateFromQuery(i => new SABENTIS_COMPANY() { cif = i.cif.Replace(" ", string.Empty) });` ### Exception Exception message: {"Object reference...

### Description I have a project using EFCore 3.1 with relevant Postgres / NodaTime packages installed. I have an entity with a property of type `Instant`. I cannot use BulkInsert...

### Description It would be desirable to be able to pass options/query hints through various EFE commands to have more control over the queries that are being sent to the...

### Description We implement keys with dedicated value objects, e.g. AccountId. In the configuration for the entity a converter is provided with HasConversion(). `entity.Property(e => e.Id).HasColumnName("AccountId").HasConversion(DBConverter_SharedKernel.AccountIdConverter);` It works fine with...

### Description `UpdateFromQuery` fails when using **related** entity in EF Core. Note that it works in EF. ### Exception ``` Microsoft.Data.SqlClient.SqlException (0x80131904): The multi-part identifier "r.PropInRelated" could not be bound....

### Description `UpdateFromQuery` fails when using **related** entity if the updated entity is of a **derived** entity type. Note that if inheritance is not involved, then it succeeds in EF,...