Jonathan Magnan
Jonathan Magnan
Hello @fonsecapontes , Which version of Entity Framework are you using? (EF6, EF Core 2.x, EF Core 3.x) We made a lot of progression on this request, almost all that's...
Hello @fonsecapontes , The v1.12.1 has been released. It's now possible to add a hook when updated Online Example: https://dotnetfiddle.net/xsmVVy ```csharp protected override void OnModelCreating(DbModelBuilder modelBuilder) { BatchUpdateManager.Hook(c => new...
Hello @Coder3333 , Thank you for reporting, we will look at it. Best Regards, Jon --- **Sponsorship** [Help us improve this library](https://github.com/sponsors/zzzprojects) **Performance Libraries** `context.BulkInsert(list, options => options.BatchSize = 1000);...
Hello @Coder3333 , We didn't successfully implement it in our library. However, we have a public extension method that could help you: `GetOrCreateDbContext` Such as: ```csharp objectContext.GetOrCreateDbContext().Set().Update(x => new Customer...
Hello @fdbva , I recommend you to open a new issue and provide us all the code required to reproduce it (normally in a test project). Best Regards, Jonathan
Answered in the issue #391
Hello @sykaufax , How will you know from which entity/row the Package State if the ID is not logged? The key is the only way to retrieve from where the...
Hello @sykaufax , The problem is the parent doesn't contain yet the EntityKey unless you customized it. We hope this summer to make some MAJOR change in this features which...
Hello @BabuAjith , This kind of error is often due to how Entity Framework is used and not our library. For example, a modified entity is attached to the context...
Sure, Here is I believe the release note for this version: https://github.com/zzzprojects/EntityFramework-Plus/releases/tag/v2.0.7 > FIXED: When using a class that inherits from ICollection the list won't be filled with an empty...