gpt4 book ai didi

c# - 从 Linq-to-Entities 中选择 Linq-to-XML?

转载 作者:行者123 更新时间:2023-11-30 13:49:31 25 4
gpt4 key购买 nike

在混合使用 Linq-to-SQL 和 Linq-to-XML 时,我曾经能够做这样的事情:

XElement xml = new XElement("People");

xml.Add(from p in Context.People
select new XElement("Person",
new XElement("Id", p.Id),
new XElement("Name", p.Name)));

在将某些内容转换为 EF 时,我现在遇到此异常:“LINQ to Entities 中仅支持无参数构造函数和初始值设定项。”

这让我相信我现在需要做这样的事情:

XElement xml = new XElement("People");

var peopleResults = Context.People.Select(p => { p.Id, p.Name }).ToList();

xml.Add(from p in peopleResults
select new XElement("Person",
new XElement("Id", p.Id),
new XElement("Name", p.Name)));

这是我现在唯一的选择,还是有另一种更清晰的代码表达方式?

最佳答案

在进行投影时使用 LINQ to Objects。为此,只需事先调用 AsEnumerable()

XElement xml = new XElement("People");

xml.Add(from p in peopleResults.AsEnumerable()
select new XElement("Person",
new XElement("Id", p.Id),
new XElement("Name", p.Name)));

关于c# - 从 Linq-to-Entities 中选择 Linq-to-XML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9263486/

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