Queryable.Cast<TResult>(IQueryable) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
IQueryable의 요소를 지정된 형식으로 변환합니다.
public:
generic <typename TResult>
[System::Runtime::CompilerServices::Extension]
static System::Linq::IQueryable<TResult> ^ Cast(System::Linq::IQueryable ^ source);
public static System.Linq.IQueryable<TResult> Cast<TResult> (this System.Linq.IQueryable source);
static member Cast : System.Linq.IQueryable -> System.Linq.IQueryable<'Result>
<Extension()>
Public Function Cast(Of TResult) (source As IQueryable) As IQueryable(Of TResult)
형식 매개 변수
- TResult
source
의 요소를 변환할 형식입니다.
매개 변수
- source
- IQueryable
변환할 요소가 들어 있는 IQueryable입니다.
반환
지정된 형식으로 변환되는 소스 시퀀스의 각 요소가 들어 있는 IQueryable<T>입니다.
예외
source
이(가) null
인 경우
시퀀스의 요소를 TResult
형식으로 캐스팅할 수 없는 경우
예제
다음 코드 예제에서는 를 사용하여 Cast<TResult>(IQueryable) 시퀀스의 개체를 형식 String으로 변환하는 방법을 보여 줍니다.
// Create a list of objects.
List<object> words =
new List<object> { "green", "blue", "violet" };
// Cast the objects in the list to type 'string'
// and project the first letter of each string.
IEnumerable<string> query =
words.AsQueryable()
.Cast<string>()
.Select(str => str.Substring(0, 1));
foreach (string s in query)
Console.WriteLine(s);
/* This code produces the following output:
g
b
v
*/
' Create a list of objects.
Dim words As New List(Of Object)(New Object() {"green", "blue", "violet"})
' Cast the objects in the list to type 'string'
' and project the first letter of each string.
Dim query As IEnumerable(Of String) = _
words.AsQueryable() _
.Cast(Of String)() _
.Select(Function(str) str.Substring(0, 1))
For Each s As String In query
MsgBox(s)
Next
' This code produces the following output:
'
' g
' b
' v
설명
메서드는 Cast<TResult>(IQueryable)MethodCallExpression 생성된 제네릭 메서드로 자신을 호출 Cast<TResult>(IQueryable) 하는 를 나타내는 을 생성합니다. 그런 다음 을 MethodCallExpression 매개 변수의 CreateQuery(Expression) 속성으로 나타내는 의 IQueryProvider 메서드에 Providersource
전달합니다.
호출 Cast<TResult>(IQueryable) 을 나타내는 식 트리를 실행한 결과로 발생하는 쿼리 동작은 매개 변수 형식의 source
구현에 따라 달라집니다. 예상 동작은 의 값을 source
형식 TResult
으로 변환하는 것입니다.
적용 대상
.NET