DbContext not found in mvc 4
.net-4.5, asp.net-mvc-4, c#
Solution
The `DbContext` lives in `EntityFramework.dll`. See this for reference
You can get it from nuget by typing this command in the PMC
Install-Package EntityFramework -Version 5.0.0
You can get into the PMC by going to Tools -> Library Package Manager -> Package Manager Console in VS
Problem
I'm creating a web application using `Visual Studio 2012` and `Framework 4.5` and I'm using `MVC 4` and I'm stuck with a problem. I need to use `DbContext` but I'cant find that in my project means I added System.Data.Entity and it still gives an error The type or namespace name 'DbContext' could not be found (are you missing a using directive or an assembly reference?) How can I solve this...?