AccessorExtensions.GetInfrastructure<T> メソッド

定義

を使用して非表示になっているプロパティから値を IInfrastructure<T>取得します。

このメソッドは、通常、データベース プロバイダー (およびその他の拡張機能) によって使用されます。 通常、アプリケーション コードでは使用されません。

public static T GetInfrastructure<T> (this Microsoft.EntityFrameworkCore.Infrastructure.IInfrastructure<T> accessor);
[System.Diagnostics.DebuggerStepThrough]
public static T GetInfrastructure<T> (this Microsoft.EntityFrameworkCore.Infrastructure.IInfrastructure<T> accessor);
static member GetInfrastructure : Microsoft.EntityFrameworkCore.Infrastructure.IInfrastructure<'T> -> 'T
[<System.Diagnostics.DebuggerStepThrough>]
static member GetInfrastructure : Microsoft.EntityFrameworkCore.Infrastructure.IInfrastructure<'T> -> 'T
<Extension()>
Public Function GetInfrastructure(Of T) (accessor As IInfrastructure(Of T)) As T

型パラメーター

T

によって IInfrastructure<T>非表示になっているプロパティの型。

パラメーター

accessor
IInfrastructure<T>

プロパティを公開する オブジェクト。

戻り値

T

プロパティに割り当てられた オブジェクト。

属性

注釈

IInfrastructure<T> は、アプリケーション コードで使用されることを意図していないが、データベース プロバイダーによって記述された拡張メソッドなどで使用できるプロパティを非表示にするために使用されます。

適用対象