ASP.NET コード ビハインドで開いているすべての SQL Server 接続を強制終了する方法はありますか? なぜ私はこれをしたいのですか?一部のチーム開発者は接続を閉じるのを忘れているため、私は彼らに思い出させるのにうんざりしています.
SqlConnection connection = new SqlConnection(ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString);
SqlDataAdapter adapter = new SqlDataAdapter();
SqlCommand SqlCommand = new SqlCommand();
connection.Open();