是否可以使用LinQ评估可选标签的存在?

时间:2011-05-15 09:56:09

标签: c# xml linq-to-xml

我会将这两种方法合并为一个......要做到这一点,我需要检查“代码”标签的存在。我怎么能这样做?

    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);
    }

是否可以评估“代码”标签的存在?我正在考虑这个解决方案:

    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);
        }
    }

1 个答案:

答案 0 :(得分:1)

这样的事情会起作用吗?

public IEnumerable<string> GetIndexValue(string name)
{
    var indices = metadataFile.Descendants("Index")
            .Where(e => e.Attribute("Name").Value == name);

    var codes = indices.Descendants("Code");

    return (codes.Any()) ? codes.Select(e => e.Value) 
                         : indices.Select(e => e.Value);
}