SqlServerMigrationSqlGenerator.DropDefaultConstraint 方法

定义

调用此方法以生成 SQL,该 SQL 将尝试删除创建列时创建的默认约束。 此方法通常由替代列的创建或更改的代码调用。

protected internal virtual void DropDefaultConstraint(string table, string column, System.Data.Entity.Migrations.Utilities.IndentedTextWriter writer);
abstract member DropDefaultConstraint : string * string * System.Data.Entity.Migrations.Utilities.IndentedTextWriter -> unit
override this.DropDefaultConstraint : string * string * System.Data.Entity.Migrations.Utilities.IndentedTextWriter -> unit
Protected Friend Overridable Sub DropDefaultConstraint (table As String, column As String, writer As IndentedTextWriter)

参数

table
String

应用约束的表。

column
String

应用约束的列。

writer
IndentedTextWriter

生成的 SQL 应写入到的编写器。

适用于