Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to downgrade Entity framework from 6 to 5?

I'm creating a Asp.Net MVC project using VS2013 and added hottowel (2.0.1) using nuget. However, the breeze doesn't work with Entity Framework 6.

How to downgrade the Entity Framework 6 of the created project to EF5?

like image 298
ca9163d9 Avatar asked Nov 29 '13 09:11

ca9163d9


People also ask

How to downgrade. net core 6 to 5?

open your Visual Studio. go to "tools" -> "get tools and features" -> " Individual components" _ then uncheck "dotnet6(. Net6. 0) Runtime" and press Modify and wait until the uninstallation complete.

How to change Entity Framework version?

Right-click on your project in Solution Explorer and select Manage NuGet Packages... Select Updates. Select EntityFramework (make sure it is going to update it to the version you want) Click Update.

How to downgrade Entity Framework core?

EntityFrameworkCore. SqlServer. click on that and the details menu directly to the right should match the version you are on. From there you can click the drop down menu and select a prior version.

Which version of Entity Framework should I use?

Keep using EF6 if the data access code is stable and not likely to evolve or need new features. Port to EF Core if the data access code is evolving or if the app needs new features only available in EF Core. Porting to EF Core is also often done for performance.


1 Answers

in the nuget package console for your project (select it in the dropdown) type:

Uninstall-package EntityFramework Install-Package EntityFramework -version 5.0.0 
like image 75
Not loved Avatar answered Sep 19 '22 21:09

Not loved