LINQ 查询中的分组依据
我有一个 DataTable,我想在其中执行 GroupBy 查询。
year url type id
=============================
someurl image 0
2003 date 0
someurl image 1
2009 date 1
我已成功按 ID 进行分组,但无法选择“年份”和“网址”列。
这是我的查询:
var query = from row in table.AsEnumerable()
let uri = row["uri"]
group row by row.Field<int>("id") into grp
orderby grp.Key
select new
{
ID = grp.Key,
};
如何选择年份和网址列?
提前致谢。
I've got a DataTable where i want to perform a GroupBy query on.
year url type id
=============================
someurl image 0
2003 date 0
someurl image 1
2009 date 1
I've managed to group on my id, but I am not able to select the columns "year" and "Url".
This is my query:
var query = from row in table.AsEnumerable()
let uri = row["uri"]
group row by row.Field<int>("id") into grp
orderby grp.Key
select new
{
ID = grp.Key,
};
How can i select the columns year and url?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您在 LINQ 中进行分组时,您的案例中的组 (grp) 是一个包含组中所有条目(案例中的数据行)的枚举。然后,您可以 foreach 条目或使用 Max、First 等聚合函数从可枚举中提取单个值
When you group by in LINQ your group (grp) in your case is an enumerable containing all the entries in a group (data rows in your case). You can then either foreach the entries or use aggregate functions like Max, First, etc. to extract a single value from the enumerable
您可以按多个值进行分组。在您的案例中,按 id、年份和 url 分组
检查此处
You can group by multiple values. In your case group by id, year and url
Check here