共用方式為


IStoredProcedure 介面

定義

表示模型中的預存程式。

public interface IStoredProcedure : Microsoft.EntityFrameworkCore.Infrastructure.IAnnotatable, Microsoft.EntityFrameworkCore.Metadata.IReadOnlyStoredProcedure
type IStoredProcedure = interface
    interface IReadOnlyStoredProcedure
    interface IReadOnlyAnnotatable
    interface IAnnotatable
Public Interface IStoredProcedure
Implements IAnnotatable, IReadOnlyStoredProcedure
衍生
實作

屬性

EntityType

取得定義這個預存程式的實體類型。

IsRowsAffectedReturned

取得值,指出這個預存程式是否傳回受影響的資料列數目。

(繼承來源 IReadOnlyStoredProcedure)
Item[String]

取得具有指定名稱的注釋值,如果不存在,則傳 null 回 。

(繼承來源 IReadOnlyAnnotatable)
Name

取得資料庫中預存程式的名稱。

Parameters

取得這個預存程式的參數。

ResultColumns

取得這個預存程式之結果的資料行。

Schema

取得資料庫中預存程式的架構。

(繼承來源 IReadOnlyStoredProcedure)
StoreStoredProcedure

取得相關聯的資料庫預存程式。

方法

AddRuntimeAnnotation(String, Object)

將執行時間批註加入至這個物件。 如果具有指定名稱的注釋已經存在,則會擲回 。

(繼承來源 IAnnotatable)
AnnotationsToDebugString(Int32)

取得 物件上宣告之所有批註的偵錯字串。

(繼承來源 IReadOnlyAnnotatable)
FindAnnotation(String)

取得具有指定名稱的注釋,如果不存在,則傳 null 回 。

(繼承來源 IReadOnlyAnnotatable)
FindOriginalValueParameter(String)

傳回對應至指定屬性的原始值參數。

FindParameter(String)

傳回對應至指定屬性的參數。

FindResultColumn(String)

傳回對應至指定屬性的結果資料行。

FindRowsAffectedParameter()

傳回受影響的資料列參數。

FindRowsAffectedResultColumn()

傳回受影響的結果資料行的資料列。

FindRuntimeAnnotation(String)

取得具有指定名稱的執行時間批註,如果不存在,則傳 null 回 。

(繼承來源 IAnnotatable)
FindRuntimeAnnotationValue(String)

取得具有指定名稱的執行時間批註值,如果不存在,則傳 null 回 。

(繼承來源 IAnnotatable)
GetAnnotation(String)

取得具有指定名稱的注釋,如果不存在,則會擲回。

(繼承來源 IReadOnlyAnnotatable)
GetAnnotations()

取得目前 物件上的所有批註。

(繼承來源 IReadOnlyAnnotatable)
GetOrAddRuntimeAnnotationValue<TValue,TArg>(String, Func<TArg,TValue>, TArg)

取得具有指定名稱的執行時間注釋值,如果不存在,請加以新增。

(繼承來源 IAnnotatable)
GetRuntimeAnnotations()

取得目前 物件上的所有執行時間批註。

(繼承來源 IAnnotatable)
GetSchemaQualifiedName()

傳回架構前面加上或 null 未對應的預存程式名稱。

(繼承來源 IReadOnlyStoredProcedure)
GetStoreIdentifier()

傳回這個預存程式的存放區識別碼。

RemoveRuntimeAnnotation(String)

從這個 物件中移除指定的執行時間批註。

(繼承來源 IAnnotatable)
SetRuntimeAnnotation(String, Object)

設定儲存在指定索引鍵下的執行時間批註。 如果具有指定名稱的注釋已經存在,則覆寫現有的注釋。

(繼承來源 IAnnotatable)
ToDebugString(MetadataDebugStringOptions, Int32)

建立人類可讀取的指定中繼資料標記法。

警告:請勿依賴傳回字串的格式。 它是專為偵錯而設計,而且可能會在發行之間任意變更。

(繼承來源 IReadOnlyStoredProcedure)

適用於