Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个名为 的数据集DataSet1.xsd,添加了一些表,最后我为其中一个表定义了一个方法。( InsertQuery(...)) 屏幕截图如下所示:
DataSet1.xsd
InsertQuery(...)
现在我的问题是如何在.aspx页面中使用此方法/功能? 例如,一旦按下按钮,我想在 Person 表中添加一行,我应该在 button_clicked 过程中写什么? 谢谢
终于可以解决问题了:)
DataSet1TableAdapters.PersonTableAdapter adapter = new DataSet1TableAdapters.PersonTableAdapter; adapter.InsertQuery(...) // <-- my method haha!