Reputation: 2588
While implementing Entity Framework 6.0 in VS 2012 (i.e. creating edmx file & tried to generate my Model class out of it), I got below error message (even though Test Connection to DB is succeeding).
The 'SqlStudio Profile Package' package did not load correctly
As a resolution step I tried to re install “Microsoft SQL Server 2012 Data-Tier App Framework" but to my surprise I could not find this item in the installed items in Programs & Feature.
Any fix is higly appreciated, as I dont want to re install either my VS 2012 or SQL Server 2008 R2.
Upvotes: 1
Views: 93
Reputation: 131
Have you installed the data-tier framework from scratch> downloadable from here
If you have, then try deleting the Microsoft.VisualStudio.Default.cache file from
C:\Users\<>\AppData\Local\Microsoft\VisualStudio\11.0\ComponentModelCache
You can also try deleting the
C:\Users\<>\AppData\Local\Microsoft\VisualStudio\11.0
and
C:\Users\<>\AppData\Roaming\Microsoft\VisualStudio\11.0
folders but this will mean you'll lose your VS configuration.
Upvotes: 1