Removes a subindex from the collection.

Namespace:  C1.LiveLinq.Indexing
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public bool Remove(
	LambdaExpression keySelector
)
Visual Basic
Public Function Remove ( _
	keySelector As LambdaExpression _
) As Boolean

Parameters

keySelector
Type: System.Linq.Expressions..::..LambdaExpression
Key selector expression of a subindex, see KeySelector.

Return Value

true if a subindex has been removed; false if there is no subindex with the given key selector in the collection.

See Also