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?
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.
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.
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.
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.
in the nuget package console for your project (select it in the dropdown) type:
Uninstall-package EntityFramework Install-Package EntityFramework -version 5.0.0
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With