Entity Framework Exception “The underlying provider failed on Open”

When trying to query data from Entity Framework, my code always return the following error:

The underlying provider failed on Open.

Here’s the screenshot.

Turn out the problem was on the Connection String for the entity.

In the config file, we have to include “Password” parameter in “connectionString” attribute.

<connectionStrings>
    <add name="SomeEntities" connectionString="metadata=res://*/Models.DB.csdl|res://*/Models.DB.ssdl|res://*/Models.DB.msl;provider=System.Data.SqlClient;provider connection string=&quot;Data Source=SERVER\INSTANCE;Initial Catalog=Database;User ID=username;Password=password;MultipleActiveResultSets=True&quot;" providerName="System.Data.EntityClient" />
</connectionStrings>

Whoolaa, it works now!

UPDATE (03.07.2011): If you still see this error message when running on IIS, please read this post.

8 thoughts on “Entity Framework Exception “The underlying provider failed on Open””

Leave a comment