기본 SqlConnection
제한 시간 인 15 초 를 재정의하려고하는데 다음 과 같은 오류가 발생합니다.
속성 또는 인덱서는 읽기 전용이므로 할당 할 수 없습니다.
이 문제를 해결할 방법이 있습니까?
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();
}
}