C# Group By

C# Group By

LINQ (language integrated query)

A query expression can return the results as groups. With the group by operators in the C# language, we separate the results of an expression into groups. This makes some query expressions more effective.

Example

Note

The group by clause comes at the end of a query expression; no select clause is required in query expressions that use group by. The first part of group by indicates what item is to be grouped, and after the by operator, you specify the condition that results in groups.

Here, IsEven returns true or false for every number; some numbers are grouped in the "false" category and the rest are grouped in the "true" category.

Odd and Even Numbers
Program that uses group by operators [C#]

using System;
using System.Linq;

class Program
{
    static void Main()
    {
	// Input array.
	int[] array = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };

	// Group elements by IsEven.
	var result = from element in array
		     orderby element
		     group element by IsEven(element);

	// Loop over groups.
	foreach (var group in result)
	{
	    // Display key and its values.
	    Console.WriteLine(group.Key);
	    foreach (var value in group)
	    {
		Console.WriteLine(value);
	    }
	}
    }

    static bool IsEven(int value)
    {
	return value % 2 == 0;
    }
}

Output

False
1
3
5
7
9
True
2
4
6
8
Foreach loop construct

Using result. Probably the hardest part of using group by is knowing how to access its results. First, you can use foreach to enumerate the groups themselves. On each group, you can access the Key property. Finally, when you use foreach to enumerator on the group, you can get the values.

Tip:More information on foreach is available on this site.

Foreach Loop Examples

Summary

The C# programming language

The group by clause is an alternative to the select clause in query expressions. It allows you to divide the results in any number of categories, which can simplify further logic in your program. It can be useful for creating sitemaps or other tree-like hiearchies.

转自:http://www.dotnetperls.com/group

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值