IConventionModelBuilder.HasNoEntityType Method

Definition

Removes the given entity type from the model.

public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionModelBuilder HasNoEntityType (Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType entityType, bool fromDataAnnotation = false);
public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionModelBuilder? HasNoEntityType (Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType entityType, bool fromDataAnnotation = false);
abstract member HasNoEntityType : Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionModelBuilder
Public Function HasNoEntityType (entityType As IConventionEntityType, Optional fromDataAnnotation As Boolean = false) As IConventionModelBuilder

Parameters

entityType
IConventionEntityType

The entity type to be removed from the model.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The same builder instance if the given entity type was removed, null otherwise.

Applies to