LINQ 如何在 lambda 表达式中选择多个属性?
我们经常使用下面的 lambda 表达式
MyList.Select(x => x.Id).ToList();
使用 lambda 表达式是否可以获取超过 1 个属性?例如,来自 MyList 的 Id
和 Name
?
我知道我可以使用以下语法:
(from item in MyList
select new { item.Id, item.Name }).ToList();
我可以使用 lambda 表达式做同样的事情吗?
We often use the following lambda expression
MyList.Select(x => x.Id).ToList();
Is possible to get more than 1 property usinglambda expression ? E.g Id
and Name
from MyList?
I know that I can use the following syntax:
(from item in MyList
select new { item.Id, item.Name }).ToList();
Can I do the same thing using lambda expression?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您感兴趣的功能是 C# 3 的 匿名类型
您可以创建匿名类型的新实例:
当然,这也可以用作 lamda:
代码中的任何位置。它还会获取属性名称,在这种情况下,您不需要显式指定它(在我的示例中,匿名类型的第三个成员自动命名为
Text
。不幸的是,您不能将它们用作函数的非泛型返回类型。
The feature you're interested in is C# 3's Anonymous Types
You can create a new instance of an anonymous type with:
Of course this works as a lamda too:
anywhere in your code. It also picks up property names, in which case you don't need to specify it explicitly(the third member of the anonymous type in my example is automatically named
Text
.Unfortunately you can't use them as a non generic return-type of a function.