AlterColumnOperation 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
AlterColumnOperation(String, ColumnModel, Boolean, Object) |
初始化 AlterColumnOperation 類別的新實例。 Entity Framework 移轉 API 的設計目的不是接受未受信任來源所提供的輸入, (例如應用程式的使用者) 。 如果從這類來源接受輸入,則應該先加以驗證,再傳遞至這些 API 以防止 SQL 插入式攻擊等。 |
AlterColumnOperation(String, ColumnModel, Boolean, AlterColumnOperation, Object) |
初始化 AlterColumnOperation 類別的新實例。 Entity Framework 移轉 API 的設計目的不是接受未受信任來源所提供的輸入, (例如應用程式的使用者) 。 如果從這類來源接受輸入,則應該先加以驗證,再傳遞至這些 API 以防止 SQL 插入式攻擊等。 |
AlterColumnOperation(String, ColumnModel, Boolean, Object)
初始化 AlterColumnOperation 類別的新實例。
Entity Framework 移轉 API 的設計目的不是接受未受信任來源所提供的輸入, (例如應用程式的使用者) 。 如果從這類來源接受輸入,則應該先加以驗證,再傳遞至這些 API 以防止 SQL 插入式攻擊等。
public AlterColumnOperation (string table, System.Data.Entity.Migrations.Model.ColumnModel column, bool isDestructiveChange, object anonymousArguments = null);
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
public AlterColumnOperation (string table, System.Data.Entity.Migrations.Model.ColumnModel column, bool isDestructiveChange, object anonymousArguments = null);
new System.Data.Entity.Migrations.Model.AlterColumnOperation : string * System.Data.Entity.Migrations.Model.ColumnModel * bool * obj -> System.Data.Entity.Migrations.Model.AlterColumnOperation
Public Sub New (table As String, column As ColumnModel, isDestructiveChange As Boolean, Optional anonymousArguments As Object = null)
參數
- table
- String
資料行所屬的資料表名稱。
- column
- ColumnModel
應變更資料行的詳細資料。
- isDestructiveChange
- Boolean
值,指出這項變更是否會導致資料遺失。
- anonymousArguments
- Object
提供者可能處理的其他引數。 使用匿名型別語法來指定引數,例如 'new { SampleArgument = 「MyValue」 }'。
- 屬性
適用於
AlterColumnOperation(String, ColumnModel, Boolean, AlterColumnOperation, Object)
初始化 AlterColumnOperation 類別的新實例。
Entity Framework 移轉 API 的設計目的不是接受未受信任來源所提供的輸入, (例如應用程式的使用者) 。 如果從這類來源接受輸入,則應該先加以驗證,再傳遞至這些 API 以防止 SQL 插入式攻擊等。
public AlterColumnOperation (string table, System.Data.Entity.Migrations.Model.ColumnModel column, bool isDestructiveChange, System.Data.Entity.Migrations.Model.AlterColumnOperation inverse, object anonymousArguments = null);
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
public AlterColumnOperation (string table, System.Data.Entity.Migrations.Model.ColumnModel column, bool isDestructiveChange, System.Data.Entity.Migrations.Model.AlterColumnOperation inverse, object anonymousArguments = null);
new System.Data.Entity.Migrations.Model.AlterColumnOperation : string * System.Data.Entity.Migrations.Model.ColumnModel * bool * System.Data.Entity.Migrations.Model.AlterColumnOperation * obj -> System.Data.Entity.Migrations.Model.AlterColumnOperation
Public Sub New (table As String, column As ColumnModel, isDestructiveChange As Boolean, inverse As AlterColumnOperation, Optional anonymousArguments As Object = null)
參數
- table
- String
資料行所屬的資料表名稱。
- column
- ColumnModel
應變更資料行的詳細資料。
- isDestructiveChange
- Boolean
值,指出這項變更是否會導致資料遺失。
- inverse
- AlterColumnOperation
還原此變更資料行的作業。
- anonymousArguments
- Object
提供者可能處理的其他引數。 使用匿名型別語法來指定引數,例如 'new { SampleArgument = 「MyValue」 }'。
- 屬性