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<TResult>
一个 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) 自身表示为构造的泛型方法。 然后,MethodCallExpressionCreateQuery(Expression)它将 传递给 由 Provider 参数的 属性表示的 的 source
方法IQueryProvider。
由于执行表示调用 Cast<TResult>(IQueryable) 的表达式树而发生的查询行为取决于参数类型的 source
实现。 预期行为是它将 中的 source
值转换为类型 TResult
。