Show / Hide Table of Contents

Interface INotifyLookup<TSource, TKey>

Denotes an incremental lookup

Namespace: NMF.Expressions.Linq
Assembly: NMF.Expressions.Utilities.dll
Syntax
public interface INotifyLookup<TSource, TKey>
Type Parameters
Name Description
TSource

The source type of the lookup

TKey

The key type for which the elements should be looked up

Properties

| Edit this page View Source

this[TKey]

Gets the collection of elements for the given key

Declaration
INotifyEnumerable<TSource> this[TKey key] { get; }
Parameters
Type Name Description
TKey key

The key

Property Value
Type Description
INotifyEnumerable<TSource>

A collection of associated elements

| Edit this page View Source

Keys

Gets a collection of keys

Declaration
INotifyEnumerable<TKey> Keys { get; }
Property Value
Type Description
INotifyEnumerable<TKey>

Extension Methods

ExpressionExtensions.AsOne<T>(T)
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX