MigrationsSqlGenerator.CreateTableCheckConstraints 方法

定义

为 的检查约束CreateTableOperation生成 SQL 片段。

protected virtual void CreateTableCheckConstraints (Microsoft.EntityFrameworkCore.Migrations.Operations.CreateTableOperation operation, Microsoft.EntityFrameworkCore.Metadata.IModel model, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
protected virtual void CreateTableCheckConstraints (Microsoft.EntityFrameworkCore.Migrations.Operations.CreateTableOperation operation, Microsoft.EntityFrameworkCore.Metadata.IModel? model, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
abstract member CreateTableCheckConstraints : Microsoft.EntityFrameworkCore.Migrations.Operations.CreateTableOperation * Microsoft.EntityFrameworkCore.Metadata.IModel * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
override this.CreateTableCheckConstraints : Microsoft.EntityFrameworkCore.Migrations.Operations.CreateTableOperation * Microsoft.EntityFrameworkCore.Metadata.IModel * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
Protected Overridable Sub CreateTableCheckConstraints (operation As CreateTableOperation, model As IModel, builder As MigrationCommandListBuilder)

参数

operation
CreateTableOperation

操作。

model
IModel

如果存在没有模型的操作,则 null 可能是目标模型。

builder
MigrationCommandListBuilder

用于添加 SQL 片段的命令生成器。

适用于