J'essaie de remplacer le SqlConnection
de 15 secondes et j'obtiens une erreur indiquant que le
La propriété ou l'indexeur ne peut pas être affecté car il est en lecture seule.
Y a-t-il un moyen de contourner ceci?
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();
}
}