作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在混合使用 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/
我是一名优秀的程序员,十分优秀!