Condividi tramite


IQueryResultItem<TEntity> Interface

Definition

Represents items inside IAsyncEnumerable<T> of a query result. The interface is a placeholder so further version information can be added into it.

public interface IQueryResultItem<out TEntity>
type IQueryResultItem<'Entity> = interface
Public Interface IQueryResultItem(Of Out TEntity)

Type Parameters

TEntity

The entity type of the result.

This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.

Properties

Value

Gets the value of the item in the result.

Applies to