次のコードで「接続プロパティが初期化されていません」というエラーが表示されます。
DbConnection connection = new SqlConnection(connStr);
connection.Open();
connection = new StackExchange.Profiling.Data.ProfiledDbConnection(connection, MiniProfiler.Current);
SqlCommand command = new SqlCommand("GetLanguages", connection as SqlConnection);
command.CommandType = CommandType.StoredProcedure;
command.CommandTimeout = 240;
command.ExecuteReader();
command.ExecuteReader(); に到達したとき。ライン。
行を削除する場合
connection = new StackExchange.Profiling.Data.ProfiledDbConnection(connection, MiniProfiler.Current);
その後、コードは正常に動作します。実行リーダーがエラーをスローする原因となっているプロファイルされたデータベース接続についてはどうですか?