gpt4 book ai didi

c# - 使用 LINQ : XML to object? 时是否可以获得除 IEnumerable 以外的其他集合

转载 作者:太空宇宙 更新时间:2023-11-03 22:20:27 26 4
gpt4 key购买 nike

所以我有一个巨大的 XML 文件,我正在使用 LINQ 将其转换为一个对象。目前我正在做:

var resultStories = from story in resultXML.Descendants("story")
select new NewsStory
{
ArticleFrequency = from tag in story.Descendants("tag")
select new KeyValuePair<string,int>((string)tag.Element("name"),(int)tag.Element("count"))
};

现在这将创建一个 IEnumerable<KeyValuePair<String,int>>为我。但我想知道是否有可能获得另一个集合,例如 Dictionary<String,int>List<new MyItem(string key, int value)

我有这本巨大的 LINQ 书,它只包含有关 Objects to XML 的信息。
这个问题是关于对象的 XML。

谢谢你:)

最佳答案

是的,这可以使用 Linqs ToDictionary方法。

你应该会说

ArticleFrequency = (from tag in story.Descendants("tag")
select new
{
Key = (string)tag.Element("name"),
Value = (int)tag.Element("count")
}).ToDictionary(val => val.Key, val => val.Value)

你的 ArticleFrequency属性当然需要是 IDictionary<string, int> 类型

更新 要在评论中回答您的问题(如果我理解正确的话),只需更改 Select返回所需类型的 Enumerable,例如

ArticleFrequency = (from tag in story.Descendants("tag")
select new MyCustomObject()
{
MyPropertyOne = (string)tag.Element("name"),
MyPropertyTwo = (int)tag.Element("count")
})

将分配 IEnumerable<MyCustomObject>到文章频率。如果你说你想要 ArticleFrequency 是 Stack 类型,你可以包装整个 Linq 查询并将它用作 Stack constructor overload 的 IEnumerable 参数。例如

ArticleFrequency = new Stack<KeyValuePair<string, int>>(
(from tag in story.Descendants("tag")
select new KeyValuePair<string, int>()
{
Key = (string)tag.Element("name"),
Value = (int)tag.Element("count")
}))

关于c# - 使用 LINQ : XML to object? 时是否可以获得除 IEnumerable<T> 以外的其他集合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3286804/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com