You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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".
The text was updated successfully, but these errors were encountered:
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.
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".
The text was updated successfully, but these errors were encountered: