LINQ 如何在 lambda 表达式中选择多个属性?

发布于 2024-10-05 16:03:51 字数 327 浏览 3 评论 0原文

我们经常使用下面的 lambda 表达式

MyList.Select(x => x.Id).ToList();

使用 lambda 表达式是否可以获取超过 1 个属性?例如,来自 MyList 的 IdName

我知道我可以使用以下语法:

(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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

江湖彼岸 2024-10-12 16:03:52
MyList.Select(x => new { x.Id, x.Name }).ToList();
MyList.Select(x => new { x.Id, x.Name }).ToList();
羁客 2024-10-12 16:03:52

您感兴趣的功能是 C# 3 的 匿名类型

您可以创建匿名类型的新实例:

var v = new { Amount = 108, Message = "Hello", this.Text };

当然,这也可以用作 lamda:

SomeThing.Select( () => new {X=1,Y=2} )

代码中的任何位置。它还会获取属性名称,在这种情况下,您不需要显式指定它(在我的示例中,匿名类型的第三个成员自动命名为 Text

不幸的是,您不能将它们用作函数的非泛型返回类型。

The feature you're interested in is C# 3's Anonymous Types

You can create a new instance of an anonymous type with:

var v = new { Amount = 108, Message = "Hello", this.Text };

Of course this works as a lamda too:

SomeThing.Select( () => new {X=1,Y=2} )

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.

如歌彻婉言 2024-10-12 16:03:52
var sample = dbcontext.MyList
                      .Select(m => new Mylist{ sampleid=m.sampleid,item=m.item })
                      .ToList();
var sample = dbcontext.MyList
                      .Select(m => new Mylist{ sampleid=m.sampleid,item=m.item })
                      .ToList();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文