DropColumnOperation コンストラクター (String, String, AddColumnOperation, Object)
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
DropColumnOperation クラスの新しいインスタンスを初期化します。 Entity Framework Migrations API は、信頼されていないソース (アプリケーションのエンド ユーザーなど) によって提供された入力を受け付けるように設計されていません。 このようなソースから入力を受け取った場合は、SQL インジェクション攻撃などの防御のために、API に渡す前に入力を検証する必要があります。
名前空間: System.Data.Entity.Migrations.Model
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
<SuppressMessageAttribute("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")> _
Public Sub New ( _
table As String, _
name As String, _
inverse As AddColumnOperation, _
anonymousArguments As Object _
)
'使用
Dim table As String
Dim name As String
Dim inverse As AddColumnOperation
Dim anonymousArguments As Object
Dim instance As New DropColumnOperation(table, name, _
inverse, anonymousArguments)
[SuppressMessageAttribute("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
public DropColumnOperation(
string table,
string name,
AddColumnOperation inverse,
Object anonymousArguments
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1026:DefaultParametersShouldNotBeUsed")]
public:
DropColumnOperation(
String^ table,
String^ name,
AddColumnOperation^ inverse,
Object^ anonymousArguments
)
[<SuppressMessageAttribute("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")>]
new :
table:string *
name:string *
inverse:AddColumnOperation *
anonymousArguments:Object -> DropColumnOperation
public function DropColumnOperation(
table : String,
name : String,
inverse : AddColumnOperation,
anonymousArguments : Object
)
パラメーター
- table
型 : System.String
列を削除するテーブルの名前。
- name
型 : System.String
削除する列の名前。
- inverse
型 : System.Data.Entity.Migrations.Model.AddColumnOperation
削除操作を元に戻すことを表す操作。
- anonymousArguments
型 : System.Object
プロバイダーが処理できる追加の引数。 匿名型の構文を使用して引数を指定します。 例: 'new { SampleArgument = "MyValue" }'。