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
  • 704,970
  • 168
  • 1,303
  • 1,425
HelloWorld1
  • 12,940
  • 25
  • 73
  • 128
  • 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 – Bernoulli IT 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,044
  • 9
  • 56
  • 115