Share via


CreateTableBuilder<TColumns> Constructor

Definition

Constructs a new builder for the given CreateTableOperation and with the given map of AddColumnOperation operations for columns.

public CreateTableBuilder (Microsoft.EntityFrameworkCore.Migrations.Operations.CreateTableOperation operation, System.Collections.Generic.IReadOnlyDictionary<System.Reflection.PropertyInfo,Microsoft.EntityFrameworkCore.Migrations.Operations.AddColumnOperation> columnMap);
new Microsoft.EntityFrameworkCore.Migrations.Operations.Builders.CreateTableBuilder<'Columns> : Microsoft.EntityFrameworkCore.Migrations.Operations.CreateTableOperation * System.Collections.Generic.IReadOnlyDictionary<System.Reflection.PropertyInfo, Microsoft.EntityFrameworkCore.Migrations.Operations.AddColumnOperation> -> Microsoft.EntityFrameworkCore.Migrations.Operations.Builders.CreateTableBuilder<'Columns>
Public Sub New (operation As CreateTableOperation, columnMap As IReadOnlyDictionary(Of PropertyInfo, AddColumnOperation))

Parameters

columnMap
IReadOnlyDictionary<PropertyInfo,AddColumnOperation>

The map of CLR properties to AddColumnOperations.

Applies to