Time Out 访问数据库超时处理 .NET

时间:2021-07-14 14:47:27
 using System.Reflection;

 using System.Data.SqlClient;

             TransactionSelectTableAdapter adapter = new TransactionSelectTableAdapter();

             Type adapterType = adapter.GetType();

             PropertyInfo commandProperty = adapterType.GetProperty("CommandCollection", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance);

             SqlCommand[] commandList = (SqlCommand[])commandProperty.GetValue(adapter, null);

             commandList[].CommandTimeout = ;

也有同事之间改某个文件的属性,相对感觉欠优雅。

个人喜欢另一个同事教我的方法,如上。

对了,对于那些同事们教我的事,

感谢我的同事们,God bless you!!!

仅供参考。