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.
我使用这条线:
DataSet.SomeTableName.Rows.InsertAt(someRow, 0);
在这一行之后,我更新了我的 SQL 表。但插入的行不会出现在 SQL Server 端。
知道为什么插入的行没有出现在 SQL 服务器端吗?
发出SetAdded方法:
SetAdded
someRow.AcceptChanges(); someRow.SetAdded();
据我所知InsertAt,实际上并没有执行RowState修改。
InsertAt
RowState