HistoryRepository.ConfigureTable(EntityTypeBuilder<HistoryRow>) Method

Definition

Configures the entity type mapped to the history table.

protected virtual void ConfigureTable (Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<Microsoft.EntityFrameworkCore.Migrations.HistoryRow> history);
abstract member ConfigureTable : Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<Microsoft.EntityFrameworkCore.Migrations.HistoryRow> -> unit
override this.ConfigureTable : Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<Microsoft.EntityFrameworkCore.Migrations.HistoryRow> -> unit
Protected Overridable Sub ConfigureTable (history As EntityTypeBuilder(Of HistoryRow))

Parameters

history
EntityTypeBuilder<HistoryRow>

A builder for the HistoryRow entity type.

Remarks

Database providers can override this to add or replace configuration.

Applies to