Finds a list of entities that match a predicate.

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

Syntax

C#
public IList<TEntity> FindAll(
	Predicate<TEntity> match
)
Visual Basic (Declaration)
Public Function FindAll ( _
	match As Predicate(Of TEntity) _
) As IList(Of TEntity)

Parameters

match
Type: System..::.Predicate<(Of <(TEntity>)>)
The predicate that must be matched

Return Value

A collection of entities that matched the provided predicate.

See Also