0

Goal: use EF 6 in my computer.

Problem: I retrieve a message saying that I need to use the latest version of the project references.

Where and how should I do it?

Information:

Using VS 2013, SQL Server 2012, Windows Server 2012 standard in my computer.

enter image description here

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
HelloWorld1
  • 13,688
  • 28
  • 82
  • 145
  • 1
    nuget package manager, `Update-Package EntityFramework` would be my first guess – Claies Sep 21 '14 at 21:36
  • Dependent on .NET Framework version maybe? See this http://stackoverflow.com/questions/19239140/does-entity-framework-6-support-net-4-0 – Youp Bernoulli Sep 21 '14 at 22:13

1 Answers1

0

In Visual Studio 2013 from View->Other Windows select Package Manager Console option and write following command:

Update-Package EntityFramework

Note that you need to select correct project in "Default Project ComboBox" and connect to internet, too.

Masoud
  • 8,020
  • 12
  • 62
  • 123