共用方式為


DbMigration.AlterTableAnnotations<TColumns> 方法

定義

加入作業來處理資料表上定義的批註變更。

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

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
protected internal void AlterTableAnnotations<TColumns> (string name, Func<System.Data.Entity.Migrations.Builders.ColumnBuilder,TColumns> columnsAction, System.Collections.Generic.IDictionary<string,System.Data.Entity.Infrastructure.Annotations.AnnotationValues> annotations, object anonymousArguments = null);
member this.AlterTableAnnotations : string * Func<System.Data.Entity.Migrations.Builders.ColumnBuilder, 'Columns> * System.Collections.Generic.IDictionary<string, System.Data.Entity.Infrastructure.Annotations.AnnotationValues> * obj -> unit
Protected Friend Sub AlterTableAnnotations(Of TColumns) (name As String, columnsAction As Func(Of ColumnBuilder, TColumns), annotations As IDictionary(Of String, AnnotationValues), Optional anonymousArguments As Object = null)

類型參數

TColumns

此作業中的資料行。 您不需要指定此類型,就會從您提供的 columnsAction 參數推斷。

參數

name
String

資料表的名稱。 架構名稱是選擇性的,如果未指定任何架構,則會假設 dbo。

columnsAction
Func<ColumnBuilder,TColumns>

指定要包含在資料表中的資料行的動作。 也就是 t = > new { Id = t.Int (identity: true) , Name = t.String () }

annotations
IDictionary<String,AnnotationValues>

已變更之資料表上的自訂批註。

anonymousArguments
Object

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

屬性

適用於