Finds a single Entity by its id.

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

Syntax

C#
Entity FindById(
	Type entityType,
	Object id
)
Visual Basic (Declaration)
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.

Examples

CopyC#
int customerId = Int32.Parse(Request.QueryString["id"]);
Entity customer = unitOfWork.FindById(typeof(Customer), customerId);

See Also