RelationalEntityTypeExtensions.GetInsertStoredProcedure Method

Definition

Overloads

GetInsertStoredProcedure(IReadOnlyEntityType)

Returns the stored procedure to which the entity type is mapped for inserts or null if not mapped to a stored procedure.

GetInsertStoredProcedure(IMutableEntityType)

Returns the stored procedure to which the entity type is mapped for inserts or null if not mapped to a stored procedure.

GetInsertStoredProcedure(IEntityType)

Returns the stored procedure to which the entity type is mapped for inserts or null if not mapped to a stored procedure.

GetInsertStoredProcedure(IConventionEntityType)

Returns the stored procedure to which the entity type is mapped for inserts or null if not mapped to a stored procedure.

GetInsertStoredProcedure(IReadOnlyEntityType)

Returns the stored procedure to which the entity type is mapped for inserts or null if not mapped to a stored procedure.

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

Parameters

entityType
IReadOnlyEntityType

The entity type.

Returns

The stored procedure to which the entity type is mapped.

Applies to

GetInsertStoredProcedure(IMutableEntityType)

Returns the stored procedure to which the entity type is mapped for inserts or null if not mapped to a stored procedure.

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

Parameters

entityType
IMutableEntityType

The entity type.

Returns

The stored procedure to which the entity type is mapped.

Applies to

GetInsertStoredProcedure(IEntityType)

Returns the stored procedure to which the entity type is mapped for inserts or null if not mapped to a stored procedure.

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

Parameters

entityType
IEntityType

The entity type.

Returns

The stored procedure to which the entity type is mapped.

Applies to

GetInsertStoredProcedure(IConventionEntityType)

Returns the stored procedure to which the entity type is mapped for inserts or null if not mapped to a stored procedure.

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

Parameters

entityType
IConventionEntityType

The entity type.

Returns

The stored procedure to which the entity type is mapped.

Applies to