IQueryable IGrouping 如何工作

发布于 2024-08-25 23:24:30 字数 132 浏览 12 评论 0原文

我返回这样的类型 IQueryable< IGrouping>列表() 我该如何使用它?就像通用 List 一样?

i return such type IQueryable< IGrouping<int, Invoice>> List()
how can i work with it? like with generic List<Invoice> ?

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

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

发布评论

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

评论(1

凉栀 2024-09-01 23:24:30

不,您有一个 IGrouping 作为您的列表成员。

每个分组都有一个 Key 属性,允许您访问该组的密钥和一个包含分组发票的 IEnumerable

因此,要访问它...

IQueryable< IGrouping<int, Invoice>> List() groupedIvoices = //... get your grouping
foreach (var group in groupedIvoices ) {
    var key = group.Key;
    var invoicesInGroup = group.ToList();
}

请查看 101 Linq 示例 以获取示例和对不同 Linq 函数的解释。

No, you have a IGrouping<int, Invoice> as your list member.

Each grouping has a Key property allowing you access to the key of the group and an IEnumerable<Invoice> containing the grouped Invoices.

So to access it ...

IQueryable< IGrouping<int, Invoice>> List() groupedIvoices = //... get your grouping
foreach (var group in groupedIvoices ) {
    var key = group.Key;
    var invoicesInGroup = group.ToList();
}

Look at 101 Linq Samples for samples and explanations for the different Linq functions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文