Entity data model designer won't open the edmx file
FOR Visual Studio 2017
I searched for the solution but come up with the installation of some NUGET packages and Extensions, nothing worked out.
Solution (Missing Entity Framework on Visual Studio)
- I searched for Visual Studio Installer on my machine and opened it.
- Under Visual Studio Professional 2017.
- I clicked on More to see more options. I selected Modify
- Select Individual Components (Second Tab)
- Check Entity Framework Under SDKs, libraries, and framework
- and then click Modify EDMX file will opens after the process gets completed.
This has happened to me a few times, usually when pulling a solution out of subversion. Rebuilding the project has always fixed the issue for me.
I also encounter that annoying screen. No, I do NOT want to edit my model in XML... I want the pretty designer! In my case I added a table which did not have a primary key. To fix...
1) Open the edmx in XML
2) Delete the erroneous table. It should be well defined with an "<-- ERROR" comment.
3) Clean and Rebuild.
4) Close and re-open Visual Studio (yes, it's annoying but necessary)
5) Rebuild one more time, then open your edmx file. Should open the designer fine.
Hope this helps.