Home > Software design >  Can EFCore 7 run inside of a .Net 4.8 WebApp?
Can EFCore 7 run inside of a .Net 4.8 WebApp?

Time:01-20

Right now I have EFCore 2.2 running inside of a .net 4.8 WebApp, runs great. But looks like we're all the way up to EFCore v7 now... would it be an exercise in futility to upgrade my large model project and it not function properly in the 4.8 WebApp?

CodePudding user response:

No, EF Core 7 suppors only .NET 6 and .NET 7 according to the nuget.

CodePudding user response:

EF Core 7.0 targets .NET 6. This means that existing applications that target .NET 6 can continue to do so. Applications targeting older .NET, .NET Core, and .NET Framework versions will need to target .NET 6 or .NET 7 to use EF Core 7.0.

  • Related