Performs a Find operation for the specified entity type based on the supplied query.

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 List<Entity> Find(
	string typename,
	Query query
)
Visual Basic (Declaration)
Public Function Find ( _
	typename As String, _
	query As Query _
) As List(Of Entity)

Parameters

typename
Type: System..::.String
The fully qualified type for which to perform the Find operation.
query
Type: Mindscape.LightSpeed.Querying..::.Query
The query to be executed.

Return Value

The set of entities which have been returned as a result of the query.

Implements

IDistributedUnitOfWorkContract..::.Find(String, Query)

See Also