IQueryable IGrouping 如何工作
我返回这样的类型 IQueryable< IGrouping
我该如何使用它?就像通用 List
一样?
i return such type IQueryable< IGrouping<int, Invoice>> List()
how can i work with it? like with generic List<Invoice>
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您有一个
IGrouping
作为您的列表成员。每个分组都有一个
Key
属性,允许您访问该组的密钥和一个包含分组发票的IEnumerable
。因此,要访问它...
请查看 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 anIEnumerable<Invoice>
containing the grouped Invoices.So to access it ...
Look at 101 Linq Samples for samples and explanations for the different Linq functions.