Finds a single Entity by its id.

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 Entity FindById(
	Type entityType,
	Object id
)
Visual Basic (Declaration)
Public Function FindById ( _
	entityType As Type, _
	id As Object _
) As Entity

Parameters

entityType
Type: System..::.Type
The type of Entity to find.
id
Type: System..::.Object
The id of the Entity

Return Value

An Entity, or null if no Entity was found with the specified id value.

Implements

IUnitOfWork..::.FindById(Type, Object)

See Also