Próbuję zastąpić domyślny SqlConnection
limit czasu wynoszący 15 sekund i pojawia się błąd informujący, że plik
nie można przypisać właściwości ani indeksatora, ponieważ jest on tylko do odczytu.
Czy jest na to sposób?
using (SqlConnection connection = new SqlConnection(Database.EstimatorConnection))
{
connection.Open();
using (SqlCommand command = connection.CreateCommand())
{
command.CommandType = CommandType.StoredProcedure;
connection.ConnectionTimeout = 180; // This is not working
command.CommandText = "sproc_StoreData";
command.Parameters.AddWithValue("@TaskPlanID", order.Projects[0].TaskPlanID);
command.Parameters.AddWithValue("@AsOfDate", order.IncurDate);
command.ExecuteNonQuery();
}
}