我已通过以下代码在一个项目中连接到SQL Server(如果没有@,这将无法工作):
private string connectionstring = @"Data source=AHURA-PC\Y;Initial Catalog=contactDB;Integrated Security=true";
但是它可以工作,并且没有问题,但是现在我想使用Ado.Net Entity Data Model
,但是它无法连接到SQL Server并出错!
即使我输入Server name
和database
然后测试连接,连接也成功,但是当我按ok
时,它会显示The system can not find the file specigfied
那我该如何连接呢?
我个人认为是因为我的计算机名称为\
后的AHURA-PC
。
有什么办法可以删除AHURA-PC
?