RelationalEntityTypeExtensions.GetDeleteStoredProcedure Method

Definition

Overloads

GetDeleteStoredProcedure(IMutableEntityType)

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

GetDeleteStoredProcedure(IReadOnlyEntityType)

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

GetDeleteStoredProcedure(IConventionEntityType)

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

GetDeleteStoredProcedure(IEntityType)

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

GetDeleteStoredProcedure(IMutableEntityType)

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

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

Parameters

entityType
IMutableEntityType

The entity type.

Returns

The stored procedure to which the entity type is mapped.

Applies to

GetDeleteStoredProcedure(IReadOnlyEntityType)

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

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

Parameters

entityType
IReadOnlyEntityType

The entity type.

Returns

The stored procedure to which the entity type is mapped.

Applies to

GetDeleteStoredProcedure(IConventionEntityType)

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

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

Parameters

entityType
IConventionEntityType

The entity type.

Returns

The stored procedure to which the entity type is mapped.

Applies to

GetDeleteStoredProcedure(IEntityType)

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

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

Parameters

entityType
IEntityType

The entity type.

Returns

The stored procedure to which the entity type is mapped.

Applies to