Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was using .mdf for connect to DB and entityClient. Now I want to change the connection string so that there will be no .mdf

Is this connectionString correct

<connectionStrings>
<!--<add name="conString" connectionString="metadata=res://*/conString.csdl|res://*/conString.ssdl|res://*/conString.msl;provider=System.Data.SqlClient;provider connection string=&quot;Data Source=.\SQL2008;AttachDbFilename=|DataDirectory|\NData.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True;MultipleActiveResultSets=True&quot;" providerName="System.Data.EntityClient" />-->
<add name="conString" connectionString="metadata=res://*/conString.csdl|res://*/conString.ssdl|res://*/conString.msl;provider=System.Data.SqlClient;provider connection string=&quot;Data Source=.\SQL2008;Initial Catalog=NData;Integrated Security=True;Connect Timeout=30;User Instance=True;MultipleActiveResultSets=True&quot;" providerName="System.Data.EntityClient" />

because I always get error The underlying provider failed on Open?

share|improve this question
I have same issue here when I try to run under IIS. If I run in VS Server I get no error. – Zote May 6 '10 at 17:32
2  
I had the same issue and removed Integrated Security from the connectionstring, created a user and made sure they have sysadmin permissions and added that user to the connectionstring. – gotnull Mar 13 '12 at 5:10
where is your DB located , if it's on a application hosted on IIS you should place your DB in your App_Data folder and edit the connection string generated by the Entityframework model to look for it there . stackoverflow.com/questions/9809442/… – eran otzap Mar 22 '12 at 11:57
I had this problem, and it was solved by inserting the password in the connection string. – satyrFrost Aug 14 '12 at 4:12

16 Answers

up vote 55 down vote accepted

I had this error and found a few solutions:

Looking at your connection string, it looks valid. I found this blog post, the problem here is that they were using Integrated Security. If you are running on IIS, your IIS user needs access to the database.

If you are using Entity Framework with Transactions, Entity Framework automatically opens and closes a connection with each database call. So when using transactions, you are attempting to spread a transaction out over multiple connections. This elevates to MSDTC.

(See this reference and this one for more information.)

Changing my code to the following fixed it:

using (DatabaseEntities context = new DatabaseEntities())
{
    context.Connection.Open();
    // the rest
}
share|improve this answer
5  
How is this done when using Linq to access the tables (using EF4)? – Brett Rigby Jul 30 '10 at 15:15
1  
@Brett Rigby: stackoverflow.com/questions/794707/… covers how to do this with Linq/EF. – Scott Stafford Apr 26 '11 at 15:48
3  
If you are using EF / DBContext, then the correct call is context.Database.Connection.Open(); – Little Lulu Jan 3 '12 at 19:05
@Christian Payne Nothing is worked for me. :( – Rauf Feb 9 '12 at 13:20
4  
@Christian Payne I happened to run into this: forums.asp.net/post/4693959.aspx. Seems someone thinks you've done a good job... – JNF May 29 '12 at 8:46
show 1 more comment

context.Connection.Open() didn't help solving my problem so I tried enabling "Allow Remote Clients" in DTC config, no more error.

share|improve this answer
can you please provide how do I open the DTC Config – Elangesh Feb 15 '11 at 9:57
1  
In windows 7 you can open the DTC config by running dcomcnfg, Component Services -> Computers -> My Computer -> Distributed Transaction Coordinator -> Right click to Local DTC -> Security. – kerem Mar 3 '11 at 16:48

I found the problem was that I had the server path within the connection string in one of these variants:

SERVER\SQLEXPRESS
SERVER

When really I should have:

.\SQLEXPRESS

For some reason I got the error whenever it had difficulty locating the instance of SQL.

share|improve this answer
3  
That might be because you don't have named pipes enabled as a connection method for SQL Server. – Paul Nov 21 '11 at 14:29
@Paul, thanks. It was likely that as it was a new installation of SQL, which rolls out with named pipes disabled. Thanks for the heads-up. +1 – dooburt Dec 5 '11 at 12:48

I had a similar issue with SQL Express on WIndows 2003 server. Simply added network service as user on the db Security.

share|improve this answer
That worked for me, thanks. – Robert Greiner Apr 19 '12 at 23:05

When you receive this exception, make sure to expand the detail and look at the inner exception details as it will provide details on why the login failed. In my case the connection string contained a user that did not have access to my database.

Regardless of whether you use Integrated Security (the context of the logged in Windows User) or an individual SQL account, make sure that the user has proper access under 'Security' for the database you are trying to access to prevent this issue.

share|improve this answer

I had a similar issue with exceptions due to the connection state, then I realized I had my domain service class variable marked as static (by mistake).

My guess is that once the service library is loaded into memory, each new call ends up using the same static variable value (domain service instance), causing conflicts via the connection state.

I think also that each client call resulted in a new thread, so multiple threads accessing the same domain service instance equated to a train wreck.

share|improve this answer
This is what did it for me too. It seems if you mark it static, it just causes all sorts of problems with the instance it's trying to work with. – Michael J. Gray Jun 27 '12 at 18:39

I got rid of this by resetting IIS but still using Integrated Authentication in connection string.

share|improve this answer
This fixed it for me...thanks! – richb01 Sep 5 '12 at 19:59

The SQL Server Express service were not set tostart automatically.

1) Go to control panel 2) Administrative Tools 3) Service 4) Set SQL Server express to start automatically by clicking on it 5) Right click and start the service

I hope that will help.

share|improve this answer

defining new windows firewall rule for SQL server (and for port 1433) on server machine solves this error. if your servername, user login name or password is not wrong in your connection string..

share|improve this answer

You could try to replace the metadata:

metadata=res:///conString.csdl|res:///conString.ssdl|res://*/conString.msl

to:

metadata=res://*/;

share|improve this answer

This can also happen if you restore a database and the user already exists with different schema, leaving you unable to assign the correct permissions.

To correct this run:

USE your_database
EXEC sp_change_users_login 'Auto_Fix', 'user', NULL, 'cf'
GO
EXEC sp_change_users_login 'update_one', 'user', 'user'
GO
share|improve this answer

I had the same problem but what worked for me was removing this from the Connection String:

persist security info=True

share|improve this answer

I posted a similar issue here, working with a SQL 2012 db hosted on Amazon RDS. The problem was in the connection string - I had "Application Name" and "App" properties in there. Once I removed those, it worked.

Entity Framework 5 and Amazon RDS - "The underlying provider failed on Open."

share|improve this answer

**

be carefull, dont use nested using(var db = new DatabaseContext) {}

your methods call many times nested using code.

if called many times nested using code you take this error.

**

share|improve this answer

I just removed EF5 and replaced it with Linq to Sql, much easier... and no more weird exceptions to handle.

EF5, what a waste of time.

Sometimes we really should ask our self if EF5 is worth all the trouble it introduce for something that is supposed to be quite simple.

share|improve this answer

A common mistake that I did because I was moving application from once pc to another and none of the above worked was that I forgot to copy the connection string to both App.Config and Web.Config!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.