嘿,我目前在我的代码中有这个方法:
public static DataSet PrepareDataSet(some params)
{
SqlConnection sqlConnection = new SqlConnection(ConfigurationSettings.AppSettings["ConnectionString"]);
SqlDataAdapter adapter = new SqlDataAdapter(Utils.EscapeProcedureName(...), sqlConnection);
adapter.SelectCommand.CommandType = CommandType.StoredProcedure;
//do some stuff with the adapter using the params
sqlConnection.Open();
DataSet dataSet= new DataSet();
adapter.Fill(dataSet);
sqlConnection.Close();
return dataSet;
}
此代码从aspx.cs页面调用。在方法中使用SQL连接和适配器是一种好方法吗?如果没有,怎么可以重构?不知何故,我认为这对于测试而言并不好......例如......
感谢您的想法:)