EntityTypeBuilder.HasBaseType Method

Definition

Overloads

HasBaseType(Type)

Sets the base type of this entity type in an inheritance hierarchy.

HasBaseType(String)

Sets the base type of this entity type in an inheritance hierarchy.

HasBaseType(Type)

Sets the base type of this entity type in an inheritance hierarchy.

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder HasBaseType (Type entityType);
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder HasBaseType (Type? entityType);
abstract member HasBaseType : Type -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder
override this.HasBaseType : Type -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder
Public Overridable Function HasBaseType (entityType As Type) As EntityTypeBuilder

Parameters

entityType
Type

The base type or null to indicate no base type.

Returns

The same builder instance so that multiple configuration calls can be chained.

Applies to

HasBaseType(String)

Sets the base type of this entity type in an inheritance hierarchy.

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder HasBaseType (string name);
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder HasBaseType (string? name);
abstract member HasBaseType : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder
override this.HasBaseType : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder
Public Overridable Function HasBaseType (name As String) As EntityTypeBuilder

Parameters

name
String

The name of the base type or null to indicate no base type.

Returns

The same builder instance so that multiple configuration calls can be chained.

Applies to