Visual Studio 2013 Professional ,EF 6.0.0.2, Web Forms Web Application Project.
1.I had a Web Site that was converted to a Web Application Project - UI Project.
2. I then created a new project within the same solution and put my EF Entity Data Model - DAL Project (Class Library project).
3. On my UI Project i referenced the DAL Project to get access to the entities.
4. I have the following connectionString on both my DAL project app.config and UI Project web.config:
<add name="Entities" connectionString="metadata=res://*/Model.csdl|res://*/Model.ssdl|res://*/Model.msl;provider=System.Data.SqlClient;provider connection string="data source=localhost;initial catalog=MyTable;persist security info=True;user id=myId;password=myPass;MultipleActiveResultSets=True;App=EntityFramework""
providerName="System.Data.EntityClient" />
When i run my application i get error:
Cou ...
Go to the complete details ...