EFCore.BulkExtensions icon indicating copy to clipboard operation
EFCore.BulkExtensions copied to clipboard

Entity Framework EF Core efcore Bulk Batch Extensions with BulkCopy in .Net for Insert Update Delete Read (CRUD), Truncate and SaveChanges operations on SQL Server, PostgreSQL, MySQL, SQLite

Results 150 EFCore.BulkExtensions issues
Sort by recently updated
recently updated
newest added

BulkInsertIrUpdateAsync with SetOutputIdentity = true doesnt return Ids on saved entities Tried on package versions 6.5.0-6.5.5

question

Hello, I tried out BulkInsertOrUpdate extensions to improve performance of one of my projects. Unfortunately I failed with my first small example and now I wanted to ask, if I'm...

bug

``` C# //test 1 await _repository.BatchUpdateAsync(t => t.Id==Guid.Empty, u => new VisitTask() { SuggesteFinishedTime = u.IsUrgent ? DateTime.Now.AddDays(2) : DateTime.Now.AddDays(7), }); Error : variable 'u' of type 'IRaCIS.Core.Domain.Models.VisitTask' referenced from...

question

When saving changes with inserts and/or deletes of two or more entity types joined by foreign keys, BulkSaveChanges can lead to referential integrity errors like this: ``` The MERGE statement...

enhancement

I am currently using version 6.5.4, experiencing an issue while implementing a TPH structure. An Owned type is defined on a base Entity and the value of Owned Type for...

question

Hi there. I've been using this library for a long time but recently many batch operations that used to work seamlessly are now throwing obscure syntax exceptions. I was surprised...

question

I found BulkInsert ignore value conversion when it handle owned entities. Seems version 6.5.3 had fixed a part of this problem. In 6.5.3 and above BulkInsert will take custom value...

enhancement

Can MySQL be supported? MySQL 8.0.23 .net 5 Thanks!!!!! 能支持MySQL吗?

enhancement

Hi folks, we have identified an issue with BulkExtensions which we cannot work properly around. It seems that bulk delete attempts to read non- EF properties. This is an issue...

question

When i execute BulkInsertOrUpdateAsync with a list of Permission ```cs public partial class Permission : Permission { public Permission() { RolePermissions = new HashSet(); } public string Name { get;...

question