skip to Main Content

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?

2

Answers


  1. 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.

    Login or Signup to reply.
  2. No, EF Core 7 suppors only .NET 6 and .NET 7 according to the nuget.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search