Table of Contents

Interface IInfrastructure<T>

Namespace
Microsoft.EntityFrameworkCore.Infrastructure
Assembly
Microsoft.EntityFrameworkCore.dll

This interface is explicitly implemented by type to hide properties that are not intended to be used in application code but can be used in extension methods written by database providers etc.

This interface is typically used by database providers (and other extensions). It is generally not used in application code.

public interface IInfrastructure<T>

Type Parameters

T

The type of the property being hidden.

Extension Methods

Remarks

See Implementation of database providers and extensions for more information and examples.

Properties

Instance

Gets the value of the property being hidden.

T Instance { get; }

Property Value

T