这是我正在尝试获取标签Element Posted_Status的XML文件,其中Posted_Status已准备就绪
<?xml version="1.0" encoding="utf-8"?>
<Server>
<Network> <---Network is the parent element
<Posted_Status id="10">Ready</Posted_Status>
<Timed_On id="10">7/28/2013 9:32:10 AM</Timed_On>
<Timed_Off id="10">8/28/2013 9:32:10 AM</Timed_Off>
</Network>
</Server>
我遇到一个linq查询返回null的问题。我正在尝试查询XML元素。元素名称为Posted_Status
。标签值为“Ready”。我正在尝试获取标签Posted_Status
,其中Posted_Status等于“Ready”。
// Query's the tag where the tag equals Ready
IEnumerable<XElement> expiration =
from exp in main.Elements("Posted_Status")
where (string)exp.Element("Posted_Status").Value == "Ready"
select exp;
执行或调用查询操作并显示Posted_Status
XML标记中标记值等于“就绪”的所有值。
foreach (string exp in expiration)
{
for (int i = 0; i < IntializedPostStat.Count(); i++)
{
IntializedPostStat[i] = exp.ToString();
lstIntializations.Items.Add("[Posted_Status]......"
+ IntializedPostStat[i].ToString());
break;
}
}
答案 0 :(得分:0)
您不需要在where
子句中强制转换为字符串,也需要将其与Value进行比较,如
where exp.Element("Posted_Status").Value == "Ready"
尝试:
var expiration =
from exp in main.Elements("Network")
where exp.Element("Posted_Status").Value.Equals("Ready", StringComparison.CurrentCulture)
select
new
{
Timed_On = exp.Element("Timed_On").Value,
Timed_Off = exp.Element("Timed_Off").Value,
};
对于输出:
foreach (var item in expiration)
{
Console.WriteLine("Timed_On: {0} \r\nTimed_Off: {1}", item.Timed_On, item.Timed_Off );
}
(如果将值解析为属性DateTime
对象,则效果更好
答案 1 :(得分:0)
from
和where
阅读Element("Posted_Status")
。
根据更新的问题进行编辑,这应该是:
XElement main = XDocument.Load(fi.FullName).Element("Server");
var expiration = from exp in main.Elements("Network")
where exp.Element("Posted_Status").Value == "Ready"
select exp;
您必须先阅读根元素。然后遍历所有“网络”并检查“Posted_Status”值
这将返回适合条件的所有“网络”元素