AccessorExtensions.GetInfrastructure<T> 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从使用 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> 用于隐藏不打算在应用程序代码中使用但可用于数据库提供程序等的扩展方法的属性。