共用方式為


DbMigration.DropStoredProcedure(String, Object) 方法

定義

新增作業,以卸載具有指定名稱的現有預存程式。

Entity Framework 移轉 API 的設計目的不是接受未受信任來源所提供的輸入, (例如應用程式的使用者) 。 如果從這類來源接受輸入,則應該先加以驗證,再傳遞至這些 API 以防止 SQL 插入式攻擊等。

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
public void DropStoredProcedure (string name, object anonymousArguments = null);
member this.DropStoredProcedure : string * obj -> unit
Public Sub DropStoredProcedure (name As String, Optional anonymousArguments As Object = null)

參數

name
String

要卸載的程式名稱。 架構名稱是選擇性的,如果未指定任何架構,則會假設 dbo。

anonymousArguments
Object

提供者可能處理的其他引數。 使用匿名型別語法來指定引數。 例如,'new { SampleArgument = 「MyValue」 }'。

屬性

適用於