我有Visual Studio 2015和SQL Server 2012。
我正在尝试制作一个小项目,但是当我尝试使用SQL Connection连接到SQL时,不会加载数据。 之后,我将断点放在那里(在SQL连接处),但是它总是消失,没有任何异常。当我尝试跳过(F10)代码
try
{
//SqlConnection sqlConnection2 = new SqlConnection(SqlConnectionString);
using (SqlConnection sqlConnection = new SqlConnection(SqlConnectionString))
{
if (sqlConnection.State != ConnectionState.Open)
sqlConnection.Open();
if (!IsStorageProcedure)
return sqlConnection.Query<T>(Query, Parameter).ToList();
else
return sqlConnection.Query<T>(Query, Parameter, commandType: CommandType.StoredProcedure).ToList();
}
}
catch(Exception ex)
{
return null;
}
对于sqlconnection字符串,我像这样将其放在WebConfig中。
“数据源= 。;初始目录= DB_Learn;持久安全信息= True;用户ID = sa;密码=香蕉3”
但是,我可以使用这些连接字符串连接到SSMS。
有人可以解释吗,发生了什么事?谢谢:)