RelationalEntityTypeExtensions.GetInsertStoredProcedure 方法

定义

重载

GetInsertStoredProcedure(IReadOnlyEntityType)

返回实体类型映射到的存储过程,以便插入; null 如果未映射到存储过程,则返回该存储过程。

GetInsertStoredProcedure(IMutableEntityType)

返回实体类型映射到的存储过程,以便插入; null 如果未映射到存储过程,则返回该存储过程。

GetInsertStoredProcedure(IEntityType)

返回实体类型映射到的存储过程,以便插入; null 如果未映射到存储过程,则返回该存储过程。

GetInsertStoredProcedure(IConventionEntityType)

返回实体类型映射到的存储过程,以便插入; null 如果未映射到存储过程,则返回该存储过程。

GetInsertStoredProcedure(IReadOnlyEntityType)

返回实体类型映射到的存储过程,以便插入; null 如果未映射到存储过程,则返回该存储过程。

public static Microsoft.EntityFrameworkCore.Metadata.IReadOnlyStoredProcedure? GetInsertStoredProcedure (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType entityType);
static member GetInsertStoredProcedure : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType -> Microsoft.EntityFrameworkCore.Metadata.IReadOnlyStoredProcedure
<Extension()>
Public Function GetInsertStoredProcedure (entityType As IReadOnlyEntityType) As IReadOnlyStoredProcedure

参数

entityType
IReadOnlyEntityType

实体类型。

返回

实体类型映射到的存储过程。

适用于

GetInsertStoredProcedure(IMutableEntityType)

返回实体类型映射到的存储过程,以便插入; null 如果未映射到存储过程,则返回该存储过程。

public static Microsoft.EntityFrameworkCore.Metadata.IMutableStoredProcedure? GetInsertStoredProcedure (this Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType entityType);
static member GetInsertStoredProcedure : Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType -> Microsoft.EntityFrameworkCore.Metadata.IMutableStoredProcedure
<Extension()>
Public Function GetInsertStoredProcedure (entityType As IMutableEntityType) As IMutableStoredProcedure

参数

entityType
IMutableEntityType

实体类型。

返回

实体类型映射到的存储过程。

适用于

GetInsertStoredProcedure(IEntityType)

返回实体类型映射到的存储过程,以便插入; null 如果未映射到存储过程,则返回该存储过程。

public static Microsoft.EntityFrameworkCore.Metadata.IStoredProcedure? GetInsertStoredProcedure (this Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType);
static member GetInsertStoredProcedure : Microsoft.EntityFrameworkCore.Metadata.IEntityType -> Microsoft.EntityFrameworkCore.Metadata.IStoredProcedure
<Extension()>
Public Function GetInsertStoredProcedure (entityType As IEntityType) As IStoredProcedure

参数

entityType
IEntityType

实体类型。

返回

实体类型映射到的存储过程。

适用于

GetInsertStoredProcedure(IConventionEntityType)

返回实体类型映射到的存储过程,以便插入; null 如果未映射到存储过程,则返回该存储过程。

public static Microsoft.EntityFrameworkCore.Metadata.IConventionStoredProcedure? GetInsertStoredProcedure (this Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType entityType);
static member GetInsertStoredProcedure : Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType -> Microsoft.EntityFrameworkCore.Metadata.IConventionStoredProcedure
<Extension()>
Public Function GetInsertStoredProcedure (entityType As IConventionEntityType) As IConventionStoredProcedure

参数

entityType
IConventionEntityType

实体类型。

返回

实体类型映射到的存储过程。

适用于