मैं 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();
}
}