Queryable.ThenBy 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
시퀀스의 요소를 오름차순으로 다시 정렬합니다.
오버로드
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>>)
- Source:
- Queryable.cs
- Source:
- Queryable.cs
- Source:
- Queryable.cs
시퀀스의 요소를 키에 따라 오름차순으로 다시 정렬합니다.
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<T>입니다.
예외
source
또는 keySelector
가 null
인 경우
예제
다음 코드 예제에서는 를 사용하여 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>>)MethodCallExpression 생성된 제네릭 메서드로 자신을 호출 ThenBy<TSource,TKey>(IOrderedQueryable<TSource>, Expression<Func<TSource,TKey>>) 하는 을 생성합니다. 그런 다음 을 MethodCallExpression 매개 변수의 CreateQuery<TElement>(Expression) 속성으로 나타내는 Provider 의 IQueryProvider 메서드에 source
전달합니다. 호출 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>)
- Source:
- Queryable.cs
- Source:
- Queryable.cs
- Source:
- Queryable.cs
시퀀스의 요소를 지정된 비교자를 사용하여 오름차순으로 다시 정렬합니다.
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<T>입니다.
예외
source
, keySelector
또는 comparer
가 null
인 경우
설명
이 메서드에는 형식 인수가 형식 중 하나인 형식 Expression<TDelegate> 의 매개 변수가 Func<T,TResult> 하나 이상 있습니다. 이러한 매개 변수의 경우 람다 식을 전달할 수 있으며 로 컴파일됩니다 Expression<TDelegate>.
메서드는 ThenBy<TSource,TKey>(IOrderedQueryable<TSource>, Expression<Func<TSource,TKey>>, IComparer<TKey>)MethodCallExpression 생성된 제네릭 메서드로 자신을 호출 ThenBy<TSource,TKey>(IOrderedQueryable<TSource>, Expression<Func<TSource,TKey>>, IComparer<TKey>) 하는 을 생성합니다. 그런 다음 을 MethodCallExpression 매개 변수의 CreateQuery<TElement>(Expression) 속성으로 나타내는 Provider 의 IQueryProvider 메서드에 source
전달합니다. 호출 CreateQuery<TElement>(Expression) 결과는 형식 IOrderedQueryable<T> 으로 캐스팅되고 반환됩니다.
호출 ThenBy<TSource,TKey>(IOrderedQueryable<TSource>, Expression<Func<TSource,TKey>>, IComparer<TKey>) 을 나타내는 식 트리를 실행한 결과로 발생하는 쿼리 동작은 매개 변수 형식 source
의 구현에 따라 달라집니다. 예상되는 동작은 의 각 source
요소에서 를 호출하여 keySelector
얻은 키를 기반으로 의 source
요소의 보조 종류를 수행하는 것입니다. 이전에 설정된 모든 정렬 순서는 유지됩니다. comparer
매개 변수는 키 값을 비교하는 데 사용됩니다.
적용 대상
.NET