Performs a Find operation where the output is to be a projection across one or more types in the query rather than an entity result.

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 RawDataSet Project(
	string typename,
	Query query
)
Visual Basic (Declaration)
Public Function Project ( _
	typename As String, _
	query As Query _
) As RawDataSet

Parameters

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

Return Value

A RawDataSet containing the raw values from the DataReader which was returned from executing the query.

Implements

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

See Also