从 WCF 服务返回 SqlDataReader

发布于 2025-01-01 06:15:46 字数 81 浏览 0 评论 0原文

我的方法当前执行一个存储过程,我可以通过 SqlDataReader 访问其结果。我现在可以将其转换为 XML 吗?这是一个 WCF Web 服务。

My method currently executes a stored procedure, the results of which I can access through the SqlDataReader. Is it now possible for me to convert this to XML? This is a wcf web service.

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

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

发布评论

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

评论(1

公布 2025-01-08 06:15:47

如上所述,如果您从 WCF 服务请求数据,它会为您序列化为 XML,通过线路发送并发送给您。您的 WCF 客户端将反序列化 - 这一切都为您完成,无需交互。

如果您只想从数据转换为 XML,则可以将 SQL 读取器加载到 DataSet,然后从该数据集获取 XML (DataSet.GetXml()) - 虽然可能不是最好/最快的方式,它又快又脏。对于单个数据表,.net DataTable 还具有写入文件、流等的 WriteXml 方法。

As said above, if you're requesting data out of a WCF service, it will serialize to XML for you, send over the wire & your WCF client will deserialize - it's all done for you, no interaction required.

If you just want to go from data to XML, you can load your SQL reader to a DataSet, then get the XML from that dataset (DataSet.GetXml()) - while probably not the best/fastest way, it's quick and dirty. For a single table of data, the .net DataTable also has a WriteXml method that writes to file, stream, etc.

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