MikaelEliasson / EntityFramework.Utilities

Provides extensions for EntityFramework that doesn't exist out of the box like delete and update by query and bulk inserts
443 stars 176 forks source link

Is It works on EF Core #129

Open Andrewdorien opened 5 years ago

Andrewdorien commented 5 years ago

I'm using EF Core 2.6 right now and have generic repository for my Entities in project. I can't use IDbSet instead of DbSet because I have to totally change my repository... Is it any way to use this utility library on EF "Core".

RudeySH commented 3 years ago

No, this library is only suitable for Entity Framework 6. Entity Framework Core (1.0) came out later and wasn't backwards compatible, and this library was never rewritten to support it. If you want to, you can use Entity Framework 6 (non-Core) in a .NET Core 3.1 project (or .NET Standard 2.1), but I recommend against doing this if you're already using Entity Framework Core.