John Smith
John Smith

Reputation: 43

Visual Studio 2012 does not have Entity Framework menu

My copy of Visual Studio 2012 does not have Entity Framework menu.

https://i.sstatic.net/9PMDG.jpg

How can I get it?

http://msdn.microsoft.com/zh-cn/data/jj200620

I'm using Visual Studio 2012 Update 2.

Upvotes: 4

Views: 12960

Answers (2)

Orhan Cinar
Orhan Cinar

Reputation: 8428

You can install it from Entity Framework Power Tools. It is an add-on for Visual Studio

Upvotes: 0

phil soady
phil soady

Reputation: 11308

There are 2 things to install if using entity framework:

  • Entity Framework in Package manager console

PM> Install-Package EntityFramework

or Install-package EntityFramework -pre if after the EF6 in its current state

The powertools offer some good options that appear in that context menu

Remember to right click on a file containing DBContext to get the right behavior.

Context Menu

Upvotes: 1

Related Questions