是否可以使用 LinQ 评估可选标签的存在?
我会将这两种方法合并为一种...为此,我需要检查“Code”标签是否存在。我怎样才能做到这一点?
public string GetIndexValue(string name)
{
return metadataFile.Descendants("Index")
.First(e => e.Attribute("Name").Value == name)
.Value;
}
public IEnumerable<string> GetIndexCodes(string name)
{
return metadataFile.Descendants("Index")
.Where(e => e.Attribute("Name").Value == name)
.Descendants("Code")
.Select(e => e.Value);
}
是否可以评估“Code”标签是否存在?我正在考虑这个解决方案:
public IEnumerable<string> GetIndexValue(string name)
{
if (metadataFile.Descendants("Index") CONTAINS TAG CODE)
{
return metadataFile.Descendants("Index")
.Where(e => e.Attribute("Name").Value == name)
.Descendants("Code")
.Select(e => e.Value);
}
else
{
return metadataFile.Descendants("Index")
.Where(e => e.Attribute("Name").Value == name)
.Select(e => e.Value);
}
}
I would merge these two methods into one... to do that i need to check the existence of the "Code" tag. How can I do that ?
public string GetIndexValue(string name)
{
return metadataFile.Descendants("Index")
.First(e => e.Attribute("Name").Value == name)
.Value;
}
public IEnumerable<string> GetIndexCodes(string name)
{
return metadataFile.Descendants("Index")
.Where(e => e.Attribute("Name").Value == name)
.Descendants("Code")
.Select(e => e.Value);
}
Is it possible to evaluate the existence of the "Code" tag ? I'm thinking to this solution :
public IEnumerable<string> GetIndexValue(string name)
{
if (metadataFile.Descendants("Index") CONTAINS TAG CODE)
{
return metadataFile.Descendants("Index")
.Where(e => e.Attribute("Name").Value == name)
.Descendants("Code")
.Select(e => e.Value);
}
else
{
return metadataFile.Descendants("Index")
.Where(e => e.Attribute("Name").Value == name)
.Select(e => e.Value);
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的东西会起作用吗?
Would something like this work?