IQueryResults<TEntity> Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the result after executing a query.
public interface IQueryResults<out TEntity> : System.Collections.Generic.IEnumerable<out TEntity>
type IQueryResults<'Entity> = interface
interface seq<'Entity>
interface IEnumerable
Public Interface IQueryResults(Of Out TEntity)
Implements IEnumerable(Of Out TEntity)
Type Parameters
- TEntity
The entity type
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.- Derived
- Implements
-
IEnumerable<TEntity> IEnumerable
Properties
ItemType |
Get the result item type. |
Version |
Gets the data version of the result. |