EnumerableQuery<T> 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
EnumerableQuery<T> 클래스의 새 인스턴스를 초기화합니다.
오버로드
| Name | Description |
|---|---|
| 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
새 인스턴스와 연결할 식 트리입니다.
- 특성