Creates a new index.

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

Syntax

C#
public Index<T, TKey> CreateIndex<T, TKey>(
	IObservableSource<T> source,
	Expression<Func<T, TKey>> keySelector,
	bool keyIsUnique,
	CultureInfo locale
)
Visual Basic
Public Function CreateIndex(Of T, TKey) ( _
	source As IObservableSource(Of T), _
	keySelector As Expression(Of Func(Of T, TKey)), _
	keyIsUnique As Boolean, _
	locale As CultureInfo _
) As Index(Of T, TKey)

Parameters

source
Type: C1.LiveLinq..::..IObservableSource<(Of <(<'T>)>)>
The collection to be indexed.
keySelector
Type: System.Linq.Expressions..::..Expression<(Of <(<'Func<(Of <(<'T, TKey>)>)>>)>)>
Key selector expression of the index, see KeySelector.
keyIsUnique
Type: System..::..Boolean
Specifies whether the key used in this index is a unique key for the indexed collection.
locale
Type: System.Globalization..::..CultureInfo
Locale information used to compare strings in the index (default: CultureInfo.CurrentCulture).

Type Parameters

T
The type of the elements of the collection to index.
TKey
The type of the index key.

Return Value

The new index.

Remarks

Normally, you don't need to use this method. Indexes are usually created in code by calling IndexCollection.Add, or their creation can be enforced in LINQ queries by using the Indexed hint. This method should be used only in special situations where all you want is to index a collection without an overhead of maintaining a collection of indexes, or you need an index that exists separately from the collection of indexes maintained by the source. Unlike the standard ways of creating indexes, this method only creates an index object and attaches it to the source (so it will be automatically synchronized with the source when the source is modified), but the created index is not added to IndexCollection<(Of <(<'T>)>)>.

A unique index occupies less memory and performs better than a non-unique index (although the difference isn't dramatic). Therefore, for unique keys, it's recommended to specify the corresponding index as unique. But do that only if you are sure that the key is indeed unique, as it imposes a uniqueness constraint on the indexed collection. An attempt to modify the indexed collection violating the uniqueness throws an InvalidOperationException.

See Also