How can I change the table adapter's command timeout

后端 未结 15 1411
遇见更好的自我
遇见更好的自我 2020-12-10 02:12

I\'m using Visual Studio 2008 with C#.

I have a .xsd file and it has a table adapter. I want to change the table adapter\'s command timeout.

Thanks for your

15条回答
  •  执念已碎
    2020-12-10 02:52

    Say your dataset is called MySET.
    There is one table called MyTable

    MySETTableAdapters.MyTableTableAdapter fAdapter = 
       new MySETTableAdapters.MyTableTableAdapter();
    fAdapter.Adapter.SelectCommand.CommandTimeout = ;
    

提交回复
热议问题