The connection string 'MyConnection' in the application's configuration file does not contain the required providerName attribute."

Hodaya Shalom picture Hodaya Shalom · Feb 25, 2013 · Viewed 58.5k times · Source

I use Entity Framework Code First,

My connection string is in a configuration file:

<connectionStrings>
    <clear/>
    <add name="ApplicationServices" connectionString="Data Source=PC-X;Initial Catalog=MYdb;Integrated Security=True"/>
  </connectionStrings>

When I try to access the data (something that should create the DB) is falling with the following error:

The connection string 'ApplicationServices' in the application's configuration file does not contain the required providerName attribute."

What am I missing?

Answer

Corey Adler picture Corey Adler · Feb 25, 2013

You're missing the following piece of code after the connectionString attribute (assuming that you're using SQL):

providerName="System.Data.SqlClient"