我在使用 LINQ TO XML 和 XMLReader 时遇到问题。问题是我无法将 XMLReader 响应加载到 LINQ 对象中并始终获取空对象,并且没有将对象设置为对象异常的实例。
代码:
XmlReader xDr = SqlHelper.ExecuteXmlReader(
new SqlConnection(ConnectionString),
CommandType.StoredProcedure,
"SP"
);
XDocument xDoc = XDocument.Load(xDr);
var Jobs = from Job in xDoc.Descendants("Job")
select new {...}
我现在将 xml 从服务器获取到 XmlReader,但是当我查看 xDoc 对象时,它是空的....
有人能帮忙吗?
谢谢你,埃雷兹