Hey getting the following error when running my MVP Entity Framework App :
Keyword not supported: 'initial catalog'.
My Config is as follows :
<add name="StevenTestEntities"
connectionString="metadata=res://*/Model.TestModel.csdl|res://*/Model.TestModel.ssdl|res://*/Model.TestModel.msl;
provider=System.Data.SqlClient;
provider connection string=Data Source=D000097;
Initial Catalog=StevenTest;
Integrated Security=True;MultipleActiveResultSets=True"
providerName="System.Data.EntityClient" />
The is occurring on the following method
public StevenTestEntities() : base("name=StevenTestEntities", "StevenTestEntities")
Which is called in my Entity Designer Class.