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"通过网络服务返回的数据集中的内容


- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01