共用方式為


DropTableOperation 建構函式

定義

多載

DropTableOperation(String, Object)

初始化 DropTableOperation 類別的新實例。

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

DropTableOperation(String, CreateTableOperation, Object)

初始化 DropTableOperation 類別的新實例。

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

DropTableOperation(String, IDictionary<String,Object>, IDictionary<String,IDictionary<String,Object>>, Object)

初始化 DropTableOperation 類別的新實例。

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

DropTableOperation(String, IDictionary<String,Object>, IDictionary<String,IDictionary<String,Object>>, CreateTableOperation, Object)

初始化 DropTableOperation 類別的新實例。

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

DropTableOperation(String, Object)

初始化 DropTableOperation 類別的新實例。

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

public DropTableOperation (string name, object anonymousArguments = null);
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
public DropTableOperation (string name, object anonymousArguments = null);
new System.Data.Entity.Migrations.Model.DropTableOperation : string * obj -> System.Data.Entity.Migrations.Model.DropTableOperation
Public Sub New (name As String, Optional anonymousArguments As Object = null)

參數

name
String

要卸載的資料表名稱。

anonymousArguments
Object

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

屬性

適用於

DropTableOperation(String, CreateTableOperation, Object)

初始化 DropTableOperation 類別的新實例。

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

public DropTableOperation (string name, System.Data.Entity.Migrations.Model.CreateTableOperation inverse, object anonymousArguments = null);
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
public DropTableOperation (string name, System.Data.Entity.Migrations.Model.CreateTableOperation inverse, object anonymousArguments = null);
new System.Data.Entity.Migrations.Model.DropTableOperation : string * System.Data.Entity.Migrations.Model.CreateTableOperation * obj -> System.Data.Entity.Migrations.Model.DropTableOperation
Public Sub New (name As String, inverse As CreateTableOperation, Optional anonymousArguments As Object = null)

參數

name
String

要卸載的資料表名稱。

inverse
CreateTableOperation

表示還原卸載資料表的作業。

anonymousArguments
Object

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

屬性

適用於

DropTableOperation(String, IDictionary<String,Object>, IDictionary<String,IDictionary<String,Object>>, Object)

初始化 DropTableOperation 類別的新實例。

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

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public DropTableOperation (string name, System.Collections.Generic.IDictionary<string,object> removedAnnotations, System.Collections.Generic.IDictionary<string,System.Collections.Generic.IDictionary<string,object>> removedColumnAnnotations, object anonymousArguments = null);
new System.Data.Entity.Migrations.Model.DropTableOperation : string * System.Collections.Generic.IDictionary<string, obj> * System.Collections.Generic.IDictionary<string, System.Collections.Generic.IDictionary<string, obj>> * obj -> System.Data.Entity.Migrations.Model.DropTableOperation
Public Sub New (name As String, removedAnnotations As IDictionary(Of String, Object), removedColumnAnnotations As IDictionary(Of String, IDictionary(Of String, Object)), Optional anonymousArguments As Object = null)

參數

name
String

要卸載的資料表名稱。

removedAnnotations
IDictionary<String,Object>

存在於要卸載之資料表上的自訂批註。 可以是 Null 或空白。

removedColumnAnnotations
IDictionary<String,IDictionary<String,Object>>

存在於要卸載之資料表資料行上的自訂批註。 可以是 Null 或空白。

anonymousArguments
Object

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

屬性

適用於

DropTableOperation(String, IDictionary<String,Object>, IDictionary<String,IDictionary<String,Object>>, CreateTableOperation, Object)

初始化 DropTableOperation 類別的新實例。

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

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public DropTableOperation (string name, System.Collections.Generic.IDictionary<string,object> removedAnnotations, System.Collections.Generic.IDictionary<string,System.Collections.Generic.IDictionary<string,object>> removedColumnAnnotations, System.Data.Entity.Migrations.Model.CreateTableOperation inverse, object anonymousArguments = null);
new System.Data.Entity.Migrations.Model.DropTableOperation : string * System.Collections.Generic.IDictionary<string, obj> * System.Collections.Generic.IDictionary<string, System.Collections.Generic.IDictionary<string, obj>> * System.Data.Entity.Migrations.Model.CreateTableOperation * obj -> System.Data.Entity.Migrations.Model.DropTableOperation
Public Sub New (name As String, removedAnnotations As IDictionary(Of String, Object), removedColumnAnnotations As IDictionary(Of String, IDictionary(Of String, Object)), inverse As CreateTableOperation, Optional anonymousArguments As Object = null)

參數

name
String

要卸載的資料表名稱。

removedAnnotations
IDictionary<String,Object>

存在於要卸載之資料表上的自訂批註。 可以是 Null 或空白。

removedColumnAnnotations
IDictionary<String,IDictionary<String,Object>>

存在於要卸載之資料表資料行上的自訂批註。 可以是 Null 或空白。

inverse
CreateTableOperation

表示還原卸載資料表的作業。

anonymousArguments
Object

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

屬性

適用於