RelationalTypeBaseExtensions.GetDeleteStoredProcedure Method

Definition

Overloads

GetDeleteStoredProcedure(IReadOnlyTypeBase)

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

GetDeleteStoredProcedure(ITypeBase)

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

GetDeleteStoredProcedure(IReadOnlyTypeBase)

Returns the stored procedure to which the 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.IReadOnlyTypeBase typeBase);
static member GetDeleteStoredProcedure : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyTypeBase -> Microsoft.EntityFrameworkCore.Metadata.IReadOnlyStoredProcedure
<Extension()>
Public Function GetDeleteStoredProcedure (typeBase As IReadOnlyTypeBase) As IReadOnlyStoredProcedure

Parameters

typeBase
IReadOnlyTypeBase

The type.

Returns

The stored procedure to which the type is mapped.

Applies to

GetDeleteStoredProcedure(ITypeBase)

Returns the stored procedure to which the 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.ITypeBase typeBase);
static member GetDeleteStoredProcedure : Microsoft.EntityFrameworkCore.Metadata.ITypeBase -> Microsoft.EntityFrameworkCore.Metadata.IStoredProcedure
<Extension()>
Public Function GetDeleteStoredProcedure (typeBase As ITypeBase) As IStoredProcedure

Parameters

typeBase
ITypeBase

The type.

Returns

The stored procedure to which the type is mapped.

Applies to