長い sql クエリを処理するときにタイムアウトの問題が発生しています。長いクエリのタイムアウトになるデータセットは次のとおりです。
static public DataSet Getxxxx(Guid xxxx)
{
DataSet ds = SqlHelper.ExecuteDataset(ConnectionString, CommandType.StoredProcedure, "GetAllxx", new SqlParameter("@productxx", productxx));
return ds;
}
Microsoft アプリケーション ブロック バージョン 2.0 を使用しています。