0

I am using VS 2013 for application development , I am not sure what version of Entity framework its being used in my project. Is there any way to find out current version of EF using package manager console ?

Dmehro
  • 1,269
  • 1
  • 16
  • 29
  • This old SO question might be helpful if it is not yet deprecated: http://stackoverflow.com/questions/3377821/entity-framework-how-can-i-tell-what-version-i-am-using – jdnew18 Jun 15 '16 at 21:07
  • Put this command in the console Get-Package OR this one Find-Package [Id] [-Source ] [-First ] [-Skip ] [-AllVersions] [-IncludePrerelease] [-ExactMatch] – Jared Stroebele Jun 15 '16 at 21:08

1 Answers1

0

You could run the Get-Package command targeting the EntityFramework package in the Package Manager Console:

Get-Package EntityFramework

After running the command, you'll see any instances within your solution (or selected scope) where Entity Framework is installed as seen below :

enter image description here

Rion Williams
  • 74,820
  • 37
  • 200
  • 327