Interface INotifyLookup<TSource, TKey>
- Namespace
- NMF.Expressions.Linq
- Assembly
- NMF.Expressions.Utilities.dll
Denotes an incremental lookup
public interface INotifyLookup<TSource, TKey>
Type Parameters
TSourceThe source type of the lookup
TKeyThe 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
keyTKeyThe key
Property Value
- INotifyEnumerable<TSource>
A collection of associated elements
Keys
Gets a collection of keys
INotifyEnumerable<TKey> Keys { get; }
Property Value
- INotifyEnumerable<TKey>