Queryable.ThenBy 메서드

정의

시퀀스의 요소를 오름차순으로 다시 정렬합니다.

오버로드

ThenBy<TSource,TKey>(IOrderedQueryable<TSource>, Expression<Func<TSource,TKey>>)

시퀀스의 요소를 키에 따라 오름차순으로 다시 정렬합니다.

ThenBy<TSource,TKey>(IOrderedQueryable<TSource>, Expression<Func<TSource,TKey>>, IComparer<TKey>)

시퀀스의 요소를 지정된 비교자를 사용하여 오름차순으로 다시 정렬합니다.

ThenBy<TSource,TKey>(IOrderedQueryable<TSource>, Expression<Func<TSource,TKey>>)

시퀀스의 요소를 키에 따라 오름차순으로 다시 정렬합니다.

public:
generic <typename TSource, typename TKey>
[System::Runtime::CompilerServices::Extension]
 static System::Linq::IOrderedQueryable<TSource> ^ ThenBy(System::Linq::IOrderedQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, TKey> ^> ^ keySelector);
public static System.Linq.IOrderedQueryable<TSource> ThenBy<TSource,TKey> (this System.Linq.IOrderedQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector);
static member ThenBy : System.Linq.IOrderedQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, 'Key>> -> System.Linq.IOrderedQueryable<'Source>
<Extension()>
Public Function ThenBy(Of TSource, TKey) (source As IOrderedQueryable(Of TSource), keySelector As Expression(Of Func(Of TSource, TKey))) As IOrderedQueryable(Of TSource)

형식 매개 변수

TSource

source 요소의 형식입니다.

TKey

keySelector에 지정된 함수가 반환하는 키 형식입니다.

매개 변수

source
IOrderedQueryable<TSource>

정렬할 요소가 들어 있는 IOrderedQueryable<T>입니다.

keySelector
Expression<Func<TSource,TKey>>

각 요소에서 키를 추출하는 함수입니다.

반환

IOrderedQueryable<TSource>

요소가 키에 따라 정렬된 IOrderedQueryable<T>입니다.

예외

source 또는 keySelectornull인 경우

예제

다음 코드 예제에서는 시퀀스에서 요소의 보조 순서를 수행 하는 데 사용 ThenBy<TSource,TKey>(IOrderedQueryable<TSource>, Expression<Func<TSource,TKey>>) 하는 방법을 보여 줍니다.

string[] fruits = { "grape", "passionfruit", "banana", "apple",
                      "orange", "raspberry", "mango", "blueberry" };

// Sort the strings first by their length and then
// alphabetically by passing the identity selector function.
IEnumerable<string> query =
    fruits.AsQueryable()
    .OrderBy(fruit => fruit.Length).ThenBy(fruit => fruit);

foreach (string fruit in query)
    Console.WriteLine(fruit);

/*
    This code produces the following output:

    apple
    grape
    mango
    banana
    orange
    blueberry
    raspberry
    passionfruit
*/
Dim fruits() As String = _
    {"grape", "passionfruit", "banana", "mango", _
     "orange", "raspberry", "apple", "blueberry"}

' Sort the strings first by their length and then 
' alphabetically by passing the identity selector function.
Dim query = fruits.AsQueryable() _
    .OrderBy(Function(fruit) fruit.Length).ThenBy(Function(fruit) fruit)

' Display the results.
Dim output As New System.Text.StringBuilder
For Each fruit As String In query
    output.AppendLine(fruit)
Next
MsgBox(output.ToString())

'This code produces the following output:

'apple
'grape
'mango
'banana
'orange
'blueberry
'raspberry
'passionfruit

설명

이 메서드에는 형식 인수가 형식 Expression<TDelegate> 중 하나인 형식의 매개 변수가 Func<T,TResult> 하나 이상 있습니다. 이러한 매개 변수의 경우 람다 식을 전달할 수 있으며 .Expression<TDelegate>

메서드는 ThenBy<TSource,TKey>(IOrderedQueryable<TSource>, Expression<Func<TSource,TKey>>) 생성된 제네릭 메서드로 자신을 호출 ThenBy<TSource,TKey>(IOrderedQueryable<TSource>, Expression<Func<TSource,TKey>>) 하는 것을 나타내는 값을 생성 MethodCallExpression 합니다. 그런 다음 매개 변수의 IQueryProvider 속성이 나타내는 메서드에 Provider source 전달 MethodCallExpression CreateQuery<TElement>(Expression) 합니다. 호출 CreateQuery<TElement>(Expression) 결과가 형식 IOrderedQueryable<T> 으로 캐스팅되고 반환됩니다.

호출 ThenBy<TSource,TKey>(IOrderedQueryable<TSource>, Expression<Func<TSource,TKey>>) 을 나타내는 식 트리를 실행한 결과로 발생하는 쿼리 동작은 매개 변수 형식 source 의 구현에 따라 달라집니다. 예상되는 동작은 각 source요소에 대해 호출하여 keySelector 얻은 키를 기반으로 하는 요소의 source 보조 종류를 수행하는 것입니다. 이전에 설정된 정렬 순서는 모두 유지됩니다.

적용 대상

ThenBy<TSource,TKey>(IOrderedQueryable<TSource>, Expression<Func<TSource,TKey>>, IComparer<TKey>)

시퀀스의 요소를 지정된 비교자를 사용하여 오름차순으로 다시 정렬합니다.

public:
generic <typename TSource, typename TKey>
[System::Runtime::CompilerServices::Extension]
 static System::Linq::IOrderedQueryable<TSource> ^ ThenBy(System::Linq::IOrderedQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, TKey> ^> ^ keySelector, System::Collections::Generic::IComparer<TKey> ^ comparer);
public static System.Linq.IOrderedQueryable<TSource> ThenBy<TSource,TKey> (this System.Linq.IOrderedQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector, System.Collections.Generic.IComparer<TKey> comparer);
public static System.Linq.IOrderedQueryable<TSource> ThenBy<TSource,TKey> (this System.Linq.IOrderedQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector, System.Collections.Generic.IComparer<TKey>? comparer);
static member ThenBy : System.Linq.IOrderedQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, 'Key>> * System.Collections.Generic.IComparer<'Key> -> System.Linq.IOrderedQueryable<'Source>
<Extension()>
Public Function ThenBy(Of TSource, TKey) (source As IOrderedQueryable(Of TSource), keySelector As Expression(Of Func(Of TSource, TKey)), comparer As IComparer(Of TKey)) As IOrderedQueryable(Of TSource)

형식 매개 변수

TSource

source 요소의 형식입니다.

TKey

keySelector에 지정된 함수가 반환하는 키 형식입니다.

매개 변수

source
IOrderedQueryable<TSource>

정렬할 요소가 들어 있는 IOrderedQueryable<T>입니다.

keySelector
Expression<Func<TSource,TKey>>

각 요소에서 키를 추출하는 함수입니다.

comparer
IComparer<TKey>

키를 비교할 IComparer<T>입니다.

반환

IOrderedQueryable<TSource>

요소가 키에 따라 정렬된 IOrderedQueryable<T>입니다.

예외

source, keySelector 또는 comparernull인 경우

설명

이 메서드에는 형식 인수가 형식 Expression<TDelegate> 중 하나인 형식의 매개 변수가 Func<T,TResult> 하나 이상 있습니다. 이러한 매개 변수의 경우 람다 식을 전달할 수 있으며 .Expression<TDelegate>

메서드는 ThenBy<TSource,TKey>(IOrderedQueryable<TSource>, Expression<Func<TSource,TKey>>, IComparer<TKey>) 생성된 제네릭 메서드로 자신을 호출 ThenBy<TSource,TKey>(IOrderedQueryable<TSource>, Expression<Func<TSource,TKey>>, IComparer<TKey>) 하는 것을 나타내는 값을 생성 MethodCallExpression 합니다. 그런 다음 매개 변수의 IQueryProvider 속성이 나타내는 메서드에 Provider source 전달 MethodCallExpression CreateQuery<TElement>(Expression) 합니다. 호출 CreateQuery<TElement>(Expression) 결과가 형식 IOrderedQueryable<T> 으로 캐스팅되고 반환됩니다.

호출 ThenBy<TSource,TKey>(IOrderedQueryable<TSource>, Expression<Func<TSource,TKey>>, IComparer<TKey>) 을 나타내는 식 트리를 실행한 결과로 발생하는 쿼리 동작은 매개 변수 형식 source 의 구현에 따라 달라집니다. 예상되는 동작은 각 source요소에 대해 호출하여 keySelector 얻은 키를 기반으로 하는 요소의 source 보조 종류를 수행하는 것입니다. 이전에 설정된 정렬 순서는 모두 유지됩니다. 매개 comparer 변수는 키 값을 비교하는 데 사용됩니다.

적용 대상