Partager via


CommonQueryableSpace.QueryFrom Method

Definition

Overloads

QueryFrom<TEntity>(IEnumerable<EntityIdentity>)
QueryFrom<TEntity>(IEnumerable<TEntity>)

QueryFrom<TEntity>(IEnumerable<EntityIdentity>)

public Microsoft.VisualStudio.ProjectSystem.Query.IAsyncQueryable<TEntity> QueryFrom<TEntity> (System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.ProjectSystem.Query.EntityIdentity> identities) where TEntity : Microsoft.VisualStudio.ProjectSystem.Query.IEntityWithId;
abstract member QueryFrom : seq<Microsoft.VisualStudio.ProjectSystem.Query.EntityIdentity> -> Microsoft.VisualStudio.ProjectSystem.Query.IAsyncQueryable<'Entity (requires 'Entity :> Microsoft.VisualStudio.ProjectSystem.Query.IEntityWithId)> (requires 'Entity :> Microsoft.VisualStudio.ProjectSystem.Query.IEntityWithId)
override this.QueryFrom : seq<Microsoft.VisualStudio.ProjectSystem.Query.EntityIdentity> -> Microsoft.VisualStudio.ProjectSystem.Query.IAsyncQueryable<'Entity (requires 'Entity :> Microsoft.VisualStudio.ProjectSystem.Query.IEntityWithId)> (requires 'Entity :> Microsoft.VisualStudio.ProjectSystem.Query.IEntityWithId)
Public Function QueryFrom(Of TEntity As IEntityWithId) (identities As IEnumerable(Of EntityIdentity)) As IAsyncQueryable(Of TEntity)

Type Parameters

TEntity

Parameters

Returns

Implements

Applies to

QueryFrom<TEntity>(IEnumerable<TEntity>)

public Microsoft.VisualStudio.ProjectSystem.Query.IAsyncQueryable<TEntity> QueryFrom<TEntity> (System.Collections.Generic.IEnumerable<TEntity> items) where TEntity : Microsoft.VisualStudio.ProjectSystem.Query.IEntityWithId;
abstract member QueryFrom : seq<'Entity (requires 'Entity :> Microsoft.VisualStudio.ProjectSystem.Query.IEntityWithId)> -> Microsoft.VisualStudio.ProjectSystem.Query.IAsyncQueryable<'Entity (requires 'Entity :> Microsoft.VisualStudio.ProjectSystem.Query.IEntityWithId)> (requires 'Entity :> Microsoft.VisualStudio.ProjectSystem.Query.IEntityWithId)
override this.QueryFrom : seq<'Entity (requires 'Entity :> Microsoft.VisualStudio.ProjectSystem.Query.IEntityWithId)> -> Microsoft.VisualStudio.ProjectSystem.Query.IAsyncQueryable<'Entity (requires 'Entity :> Microsoft.VisualStudio.ProjectSystem.Query.IEntityWithId)> (requires 'Entity :> Microsoft.VisualStudio.ProjectSystem.Query.IEntityWithId)
Public Function QueryFrom(Of TEntity As IEntityWithId) (items As IEnumerable(Of TEntity)) As IAsyncQueryable(Of TEntity)

Type Parameters

TEntity

Parameters

items
IEnumerable<TEntity>

Returns

Implements

Applies to