Show / Hide Table of Contents

Interface IQueryableDictionary<TKey, TValue>

Interface for queryable dictionaries, allowing execution of queries against dictionary collections.

Namespace: System.Linq
Assembly: Reaqtor.Shared.Model.dll
Syntax
public interface IQueryableDictionary<TKey, TValue> : IQueryable<KeyValuePair<TKey, TValue>>, IEnumerable<KeyValuePair<TKey, TValue>>, IEnumerable, IQueryable, IReadOnlyDictionary<TKey, TValue>, IReadOnlyCollection<KeyValuePair<TKey, TValue>>
Type Parameters
Name Description
TKey

Type of the keys in the dictionary.

TValue

Type of the values in the dictionary.

Properties

Keys

Gets the keys in the dictionary.

Declaration
IQueryable<TKey> Keys { get; }
Property Value
Type Description
System.Linq.IQueryable<TKey>

Values

Gets the values in the dictionary.

Declaration
IQueryable<TValue> Values { get; }
Property Value
Type Description
System.Linq.IQueryable<TValue>
In This Article
Back to top Generated by DocFX