从 WCF 服务返回 SqlDataReader
我的方法当前执行一个存储过程,我可以通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如上所述,如果您从 WCF 服务请求数据,它会为您序列化为 XML,通过线路发送并发送给您。您的 WCF 客户端将反序列化 - 这一切都为您完成,无需交互。
如果您只想从数据转换为 XML,则可以将 SQL 读取器加载到 DataSet,然后从该数据集获取 XML (
DataSet.GetXml()
) - 虽然可能不是最好/最快的方式,它又快又脏。对于单个数据表,.netDataTable
还具有写入文件、流等的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 .netDataTable
also has aWriteXml
method that writes to file, stream, etc.