Obsolete. Use FindById(Type, Object) instead.

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

Syntax

C#
[ObsoleteAttribute("FindOne is no longer used for retrieving an entity by id.  Use FindById instead.")]
public TEntity FindOne<TEntity>(
	Object id
) where TEntity : Entity
Visual Basic (Declaration)
<ObsoleteAttribute("FindOne is no longer used for retrieving an entity by id.  Use FindById instead.")> _
Public Function FindOne(Of TEntity As Entity) ( _
	id As Object _
) As TEntity

Parameters

id
Type: System..::.Object
The id of the Entity

Type Parameters

TEntity
The type of Entity to find.

Return Value

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

See Also