Finds a collection of entities that match the provided QueryExpression.
| C# | Visual Basic |
public static IList<TEntity> Find<TEntity>( QueryExpression queryExpression ) where TEntity : Entity
Public Shared Function Find(Of TEntity As Entity) ( _ queryExpression As QueryExpression _ ) As IList(Of TEntity)
- TEntity
- The entity type.
- queryExpression (QueryExpression)
- A QueryExpression used to filter the set of results that should be returned.
A collection of entities that satisfy the supplied QueryExpression