RenameProcedureOperation(String, String, Object) 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 RenameProcedureOperation 類別的新執行個體。
Entity Framework 移轉 API 並非設計來接受不受信任的來源所提供的輸入, (例如應用程式的使用者) 。 如果從這類來源接受輸入,則應該先加以驗證,再傳遞至這些 API 以防範 SQL 插入式攻擊等。
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
public RenameProcedureOperation (string name, string newName, object anonymousArguments = null);
new System.Data.Entity.Migrations.Model.RenameProcedureOperation : string * string * obj -> System.Data.Entity.Migrations.Model.RenameProcedureOperation
Public Sub New (name As String, newName As String, Optional anonymousArguments As Object = null)
參數
- name
- String
要重新命名之預存程式的名稱。
- newName
- String
預存程式的新名稱。
- anonymousArguments
- Object
使用匿名型別語法來指定引數,例如 'new { SampleArgument = 「MyValue」 }'。
- 屬性