Finds the specified query expression.

Namespace:  Mindscape.LightSpeed.ServiceModel
Assembly:  Mindscape.LightSpeed.ServiceModel (in Mindscape.LightSpeed.ServiceModel.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public IList<TEntity> Find<TEntity>(
	QueryExpression queryExpression,
	Order order,
	Page page
) where TEntity : Entity
Visual Basic (Declaration)
Public Function Find(Of TEntity As Entity) ( _
	queryExpression As QueryExpression, _
	order As Order, _
	page As Page _
) As IList(Of TEntity)

Parameters

queryExpression
Type: Mindscape.LightSpeed.Querying..::.QueryExpression
The query expression.
order
Type: Mindscape.LightSpeed.Querying..::.Order
The order.
page
Type: Mindscape.LightSpeed.Querying..::.Page
The page.

Type Parameters

TEntity
The type of the entity.

Return Value

A collection of entities of a given type.

See Also