linq 返回二维字典

发布于 2024-10-06 23:48:52 字数 615 浏览 2 评论 0 原文

如何在 linq 上安装查询以返回类似 Dictionary> 的内容?


如果有人有同样的问题,这里有一个示例答案。

Dictionary<string,Dictionary<string,string>>
 retorno =(
                from x in  rss.Descendants("teste").Descendants()
                where  x.Descendants().Count() > 1
                select new {nome = x.Name.ToString(), valor =(
                from c in x.Descendants()
                select c).ToDictionary(c=>c.Name.ToString(),c=>c.Value.ToString())}).ToDictionary(x=>x.nome,x=>x.valor);

How to mount a query on linq to return something like this Dictionary<string,Dictionary<string,string>>?


if someone have the same question here is an example answer for this.

Dictionary<string,Dictionary<string,string>>
 retorno =(
                from x in  rss.Descendants("teste").Descendants()
                where  x.Descendants().Count() > 1
                select new {nome = x.Name.ToString(), valor =(
                from c in x.Descendants()
                select c).ToDictionary(c=>c.Name.ToString(),c=>c.Value.ToString())}).ToDictionary(x=>x.nome,x=>x.valor);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文