DbMigration.DropPrimaryKey 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
DropPrimaryKey(String, Object) |
新增作業,以卸載以預設名稱建立的現有主鍵。 Entity Framework 移轉 API 並非設計來接受不受信任的來源所提供的輸入, (例如應用程式的使用者) 。 如果從這類來源接受輸入,則應該先加以驗證,再傳遞至這些 API 以防範 SQL 插入式攻擊等。 |
DropPrimaryKey(String, String, Object) |
新增作業以卸載沒有預設名稱的現有主鍵。 Entity Framework 移轉 API 並非設計來接受不受信任的來源所提供的輸入, (例如應用程式的使用者) 。 如果從這類來源接受輸入,則應該先加以驗證,再傳遞至這些 API 以防範 SQL 插入式攻擊等。 |
DropPrimaryKey(String, Object)
新增作業,以卸載以預設名稱建立的現有主鍵。
Entity Framework 移轉 API 並非設計來接受不受信任的來源所提供的輸入, (例如應用程式的使用者) 。 如果從這類來源接受輸入,則應該先加以驗證,再傳遞至這些 API 以防範 SQL 插入式攻擊等。
protected internal void DropPrimaryKey(string table, object anonymousArguments = null);
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
protected internal void DropPrimaryKey(string table, object anonymousArguments = null);
member this.DropPrimaryKey : string * obj -> unit
Protected Friend Sub DropPrimaryKey (table As String, Optional anonymousArguments As Object = null)
參數
- table
- String
包含主鍵資料行的資料表。 架構名稱是選擇性的,如果未指定任何架構,則會假設 dbo。
- anonymousArguments
- Object
提供者可能處理的其他引數。 使用匿名型別語法來指定引數,例如 'new { SampleArgument = 「MyValue」 }'。
- 屬性
適用於
DropPrimaryKey(String, String, Object)
新增作業以卸載沒有預設名稱的現有主鍵。
Entity Framework 移轉 API 並非設計來接受不受信任的來源所提供的輸入, (例如應用程式的使用者) 。 如果從這類來源接受輸入,則應該先加以驗證,再傳遞至這些 API 以防範 SQL 插入式攻擊等。
protected internal void DropPrimaryKey(string table, string name, object anonymousArguments = null);
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
protected internal void DropPrimaryKey(string table, string name, object anonymousArguments = null);
member this.DropPrimaryKey : string * string * obj -> unit
Protected Friend Sub DropPrimaryKey (table As String, name As String, Optional anonymousArguments As Object = null)
參數
- table
- String
包含主鍵資料行的資料表。 架構名稱是選擇性的,如果未指定任何架構,則會假設 dbo。
- name
- String
要卸載的主鍵名稱。
- anonymousArguments
- Object
提供者可能處理的其他引數。 使用匿名型別語法來指定引數,例如 'new { SampleArgument = 「MyValue」 }'。
- 屬性