Table of Contents

Interface IReadOnlyStoreObjectDictionary<T>

Namespace
Microsoft.EntityFrameworkCore.Metadata
Assembly
Microsoft.EntityFrameworkCore.Relational.dll

Represents a lookup based on StoreObjectIdentifier keys.

public interface IReadOnlyStoreObjectDictionary<out T> where T : class

Type Parameters

T

The values type.

Methods

Find(in StoreObjectIdentifier)

Gets the value associated with the specified key.

T? Find(in StoreObjectIdentifier storeObject)

Parameters

storeObject StoreObjectIdentifier

The key of the value to get.

Returns

T

The value associated with the specified key, or null if not found.

GetValues()

Gets a collection containing the values from this collection.

IEnumerable<out T> GetValues()

Returns

IEnumerable<T>

A collection containing the values from this collection.