0

Recently I've just updated my Entity Framework in my project from 4.0 to 6.0, after updating I got almost 300 errors, and now it's a mess. I wish to rollback to the previous point where the Entity Framework was 4.0.

How can I do it with .Net Visual Studio 2010?

leppie
  • 115,091
  • 17
  • 196
  • 297
f855a864
  • 177
  • 10

1 Answers1

2

go to tools -> library package manager -> package manager console

then in the package manager consolo write

Uninstall-Package EntityFramework

finally when it's done

Install-Package EntityFramework -Version 4.1.10311 

you can try 4.3.1 its the newest version for 4.*

https://www.nuget.org/packages/EntityFramework/4.1.10331

bto.rdz
  • 6,636
  • 4
  • 35
  • 52