RelationalTypeBaseExtensions.GetInsertStoredProcedure Method

Definition

Overloads

GetInsertStoredProcedure(IReadOnlyTypeBase)

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

GetInsertStoredProcedure(ITypeBase)

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

GetInsertStoredProcedure(IReadOnlyTypeBase)

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

Parameters

typeBase
IReadOnlyTypeBase

The type.

Returns

The stored procedure to which the type is mapped.

Applies to

GetInsertStoredProcedure(ITypeBase)

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

Parameters

typeBase
ITypeBase

The type.

Returns

The stored procedure to which the type is mapped.

Applies to