如何删除“diffgr:before"通过网络服务返回的数据集中的内容

How to remove quot;diffgr:beforequot; content from returned dataset via webservice(如何删除“diffgr:before通过网络服务返回的数据集中的内容)
本文介绍了如何删除“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"通过网络服务返回的数据集中的内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
how do i pass parameters to aspnet reportviewer(如何将参数传递给aspnet report查看器)
Bind multiple parameters from route and body to a model in ASP.NET Core(在ASP.NET Core中将路由和主体中的多个参数绑定到一个模型)
Custom model binding in AspNet Core WebApi?(AspNet Core WebApi中的自定义模型绑定?)
How to minify in .net core mvc view?(如何在.Net核心MVC视图中缩小?)