EnumerableQuery<T> 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 EnumerableQuery<T> 类的新实例。
重载
| 名称 | 说明 |
|---|---|
| EnumerableQuery<T>(IEnumerable<T>) |
此 API 支持产品基础结构,不能在代码中直接使用。 初始化类的新实例 EnumerableQuery<T> 并将其与 IEnumerable<T> 集合相关联。 |
| EnumerableQuery<T>(Expression) |
此 API 支持产品基础结构,不能在代码中直接使用。 初始化类的新实例 EnumerableQuery<T> ,并将该实例与表达式树相关联。 |
EnumerableQuery<T>(IEnumerable<T>)
- Source:
- EnumerableQuery.cs
- Source:
- EnumerableQuery.cs
- Source:
- EnumerableQuery.cs
- Source:
- EnumerableQuery.cs
- Source:
- EnumerableQuery.cs
初始化类的新实例 EnumerableQuery<T> 并将其与 IEnumerable<T> 集合相关联。
此 API 支持产品基础结构,不能在代码中直接使用。
public:
EnumerableQuery(System::Collections::Generic::IEnumerable<T> ^ enumerable);
public EnumerableQuery(System.Collections.Generic.IEnumerable<T> enumerable);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Enumerating in-memory collections as IQueryable can require unreferenced code because expressions referencing IQueryable extension methods can get rebound to IEnumerable extension methods. The IEnumerable extension methods could be trimmed causing the application to fail at runtime.")]
public EnumerableQuery(System.Collections.Generic.IEnumerable<T> enumerable);
new System.Linq.EnumerableQuery<'T> : seq<'T> -> System.Linq.EnumerableQuery<'T>
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Enumerating in-memory collections as IQueryable can require unreferenced code because expressions referencing IQueryable extension methods can get rebound to IEnumerable extension methods. The IEnumerable extension methods could be trimmed causing the application to fail at runtime.")>]
new System.Linq.EnumerableQuery<'T> : seq<'T> -> System.Linq.EnumerableQuery<'T>
Public Sub New (enumerable As IEnumerable(Of T))
参数
- enumerable
- IEnumerable<T>
要与新实例关联的集合。
- 属性
适用于
EnumerableQuery<T>(Expression)
- Source:
- EnumerableQuery.cs
- Source:
- EnumerableQuery.cs
- Source:
- EnumerableQuery.cs
- Source:
- EnumerableQuery.cs
- Source:
- EnumerableQuery.cs
初始化类的新实例 EnumerableQuery<T> ,并将该实例与表达式树相关联。
此 API 支持产品基础结构,不能在代码中直接使用。
public:
EnumerableQuery(System::Linq::Expressions::Expression ^ expression);
public EnumerableQuery(System.Linq.Expressions.Expression expression);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Enumerating in-memory collections as IQueryable can require unreferenced code because expressions referencing IQueryable extension methods can get rebound to IEnumerable extension methods. The IEnumerable extension methods could be trimmed causing the application to fail at runtime.")]
public EnumerableQuery(System.Linq.Expressions.Expression expression);
new System.Linq.EnumerableQuery<'T> : System.Linq.Expressions.Expression -> System.Linq.EnumerableQuery<'T>
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Enumerating in-memory collections as IQueryable can require unreferenced code because expressions referencing IQueryable extension methods can get rebound to IEnumerable extension methods. The IEnumerable extension methods could be trimmed causing the application to fail at runtime.")>]
new System.Linq.EnumerableQuery<'T> : System.Linq.Expressions.Expression -> System.Linq.EnumerableQuery<'T>
Public Sub New (expression As Expression)
参数
- expression
- Expression
要与新实例关联的表达式树。
- 属性