DataSet.GetChanges() 返回 null C#

发布于 2024-08-27 09:50:58 字数 206 浏览 4 评论 0原文

我试试这个

DataSet ds = new DataSet();
ds.AcceptChanges();

//edit table in ds
ds.Tables[0].Rows.RemoveAt(0);

//get changes
DataSet ds2 = ds.GetChanges();

but ds2 is null, why?

I try this

DataSet ds = new DataSet();
ds.AcceptChanges();

//edit table in ds
ds.Tables[0].Rows.RemoveAt(0);

//get changes
DataSet ds2 = ds.GetChanges();

but ds2 is null, why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

仅此而已 2024-09-03 09:50:58

使用Delete而不是RemoveAt:

//ds.Tables[0].Rows.RemoveAt(0);
ds.Tables[0].Rows[0].Delete();

RemoveAt()确实删除了Row,没有留下任何痕迹,因此没有Change信息。 Delete() 只是将该行标记为已删除。

Use Delete instead of RemoveAt:

//ds.Tables[0].Rows.RemoveAt(0);
ds.Tables[0].Rows[0].Delete();

RemoveAt() really removes the Row, there is no trace of it left and hence there is no Change information. Delete() just marks the row as deleted.

瑾夏年华 2024-09-03 09:50:58

也许表格已经是空的,删除第一行没有改变任何东西吗?

Maybe the table was already empty, do removing the first row didn't change anything?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文