How to remove quot;diffgr:beforequot; content from returned dataset via webservice(如何删除“diffgr:before通过网络服务返回的数据集中的内容)
问题描述
我有一个网络方法:
public DataSet SyncedWall()
{
DataSet dst = dscomment;
dst.Tables[0].Rows[i]["WallInfo"] = "my own modified value";
return dst;
}
虽然真正的方法很大,但这是一个缩小版.
Although the real method is big but this is a minified version.
以下是从web方法接收到的xml输出:
Following is the xml output received from the web method:
<DataSet>
<xs:schema id="NewDataSet">
<!-- Schema goes here.. -->
</xs:schema>
<diffgr:diffgram>
<NewDataSet>
<!-- Dataset values goes here... -->
</NewDataSet>
<diffgr:before>
<!-- Here are the original modified (unwanted) values -->
</diffgr:before>
</diffgr:diffgram>
</DataSet>
我想要的是删除 <diffgr:before> 标记及其内部内容.该怎么做?
What I want is to remove the <diffgr:before> tag and its inner contents.
How to do that?
推荐答案
Hurreeyyyyyy!!!
Hurreeyyyyyy!!!
在摸索了几个小时之后,我找到了答案.:P在返回数据集之前,只需调用 datasetObject.AcceptChanges(); 即可.
I've found the answer after scratching my head upto couples of hours. :P
Before returning the dataset just call for datasetObject.AcceptChanges(); and you're done.
代码如下:
public DataSet SyncedWall()
{
DataSet dst = dscomment;
dst.Tables[0].Rows[i]["WallInfo"] = "my own modified value";
dst.AcceptChanges();
return dst;
}
这篇关于如何删除“diffgr:before"通过网络服务返回的数据集中的内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何删除“diffgr:before"通过网络服务返回的数据集中的内容
基础教程推荐
- 重新排序 WPF TabControl 中的选项卡 2022-01-01
- 在 VB6 或经典 ASP 中使用 .NET 2022-01-01
- 将数据集转换为列表 2022-01-01
- 从 C# 控制相机设备 2022-01-01
- 获取C#保存对话框的文件路径 2022-01-01
- C# 9 新特性——record的相关总结 2023-04-03
- 更新 Visual Studio 中的 DataSet 结构以匹配新的 SQL 数据库结构 2022-01-01
- 如果条件可以为空 2022-01-01
- SonarQube C# 分析失败“不是指针的有效行偏移" 2022-01-01
- Mono https webrequest 失败并显示“身份验证或解密失败" 2022-01-01
