Update version of the Entity framework

2

I just updated my version of .Net 3.5 to 4.5.1.

My Entity Framework was in version 3.5, I was wondering if it already updates to the newer version after the framework switch.     

asked by anonymous 02.10.2014 / 16:34

1 answer

2

In fact, I believe it is impossible for your Entity Framework to be in version 3.5, because the oldest version distributed is 4.1.10311 .

Anyway, to upgrade, go to View > Other Windows > Package Manager Console and type:

  

Install-Package EntityFramework -Version 6.1.1

This should update your Entity Framework to the most recent stable version on the date of this response.

    
02.10.2014 / 16:53