Interface INotifyLookup<TSource, TKey>
- Namespace
- NMF.Expressions.Linq
- Assembly
- NMF.Expressions.Utilities.dll
Denotes an incremental lookup
public interface INotifyLookup<TSource, TKey>
Type Parameters
TSource
The source type of the lookup
TKey
The key type for which the elements should be looked up
- Extension Methods
Properties
this[TKey]
Gets the collection of elements for the given key
INotifyEnumerable<TSource> this[TKey key] { get; }
Parameters
key
TKeyThe key
Property Value
- INotifyEnumerable<TSource>
A collection of associated elements
Keys
Gets a collection of keys
INotifyEnumerable<TKey> Keys { get; }
Property Value
- INotifyEnumerable<TKey>