Table of Contents

Interface ITableMigrationOperation

Namespace
Microsoft.EntityFrameworkCore.Migrations.Operations
Assembly
Microsoft.EntityFrameworkCore.Relational.dll

Represents a migration operation on a table.

public interface ITableMigrationOperation

Remarks

See Database migrations for more information and examples.

Properties

Schema

The schema that contains the table, or null if the default schema should be used.

string? Schema { get; }

Property Value

string

Table

The table that contains the target of this operation.

string Table { get; }

Property Value

string