Entity Framework can be very slow on mass insert/update/delete operations. Even the often suggested tweaks to turn off AutoDetectChanges and/or ValidateOnSaveEnabled does not always help.
I have come across the Z.EntityFramework.Extensions on NuGet, but it seems to be a commercial product, which will only work for a certain period of time.
https://www.nuget.org/packages/Z.EntityFramework.Extensions/
So far, I really only need BulkInsert(), BulkUpdate() and BulkDelete().
My question is:
Is there any reliable non-commercial library, that does nearly the same as Z.EntityFramework.Extensions?
Thanks for any hints!