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

发布于 2024-11-07 00:01:02 字数 1147 浏览 0 评论 0原文

我会将这两种方法合并为一种...为此,我需要检查“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枯叶蝶 2024-11-14 00:01:02

像这样的东西会起作用吗?

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

Would something like this work?

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);
}   
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文