Share via


ScaffoldingModelAnnotations Class

Definition

public class ScaffoldingModelAnnotations : Microsoft.EntityFrameworkCore.Metadata.RelationalModelAnnotations
type ScaffoldingModelAnnotations = class
    inherit RelationalModelAnnotations
Public Class ScaffoldingModelAnnotations
Inherits RelationalModelAnnotations
Inheritance
ScaffoldingModelAnnotations

Constructors

ScaffoldingModelAnnotations(IModel)

Fields

ProviderFullAnnotationNames (Inherited from RelationalModelAnnotations)

Properties

Annotations

The RelationalAnnotations helper representing the IModel to annotate.

(Inherited from RelationalModelAnnotations)
DatabaseName (Inherited from RelationalModelAnnotations)
DbFunctions

All IDbFunctions contained in the model.

(Inherited from RelationalModelAnnotations)
DefaultSchema

The default schema to use for the model, or null if none has been explicitly set.

(Inherited from RelationalModelAnnotations)
EntityTypeErrors
MaxIdentifierLength

The maximum length allowed for store identifiers.

(Inherited from RelationalModelAnnotations)
Model

The IModel to annotate.

(Inherited from RelationalModelAnnotations)
Sequences

All ISequences contained in the model.

(Inherited from RelationalModelAnnotations)
UseProviderMethodName

Methods

FindDbFunction(MethodInfo)

Finds a IDbFunction that is mapped to the method represented by the given MethodInfo.

(Inherited from RelationalModelAnnotations)
FindSequence(String, String)

Finds an ISequence with the given name.

(Inherited from RelationalModelAnnotations)
GetOrAddDbFunction(MethodInfo)

Either returns the existing Microsoft.EntityFrameworkCore.Metadata.Internal.DbFunction mapped to the given method or creates a new function mapped to the method.

(Inherited from RelationalModelAnnotations)
GetOrAddSequence(String, String)

Either returns the existing IMutableSequence with the given name in the given schema or creates a new sequence with the given name and schema.

(Inherited from RelationalModelAnnotations)
SetDatabaseName(String) (Inherited from RelationalModelAnnotations)
SetDefaultSchema(String)

Attempts to set the DefaultSchema using the semantics of the RelationalAnnotations in use.

(Inherited from RelationalModelAnnotations)
SetMaxIdentifierLength(Nullable<Int32>)

Attempts to set the MaxIdentifierLength using the semantics of the RelationalAnnotations in use.

(Inherited from RelationalModelAnnotations)

Applies to