本文介绍了在tableadapter,constructor或load事件中应在哪里填充?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嘿,我正在开发一个应用程序,其中我使用数据集和tableadapter与数据库进行连接.
我的问题是建议在表格适配器上填满什么地方?
例如:
this.tableAdapter(this.dataset.table)
在哪里?在InitializeComponent()之后的构造函数中还是在窗体的Load事件中?
谢谢.

Hy, i''m working on a application where i use dataset and tableadapter for the connection with my database.
My question is where it is recomended to make fill on the table adapter?
for example:
this.tableAdapter(this.dataset.table)
Where?In the constructor after InitializeComponent()?or in the Load event of the form?
Thank you.

推荐答案



这篇关于在tableadapter,constructor或load事件中应在哪里填充?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 01:17