IConventionSequenceBuilder.HasType(Type, Boolean) Method

Definition

Sets the type of values returned by the sequence.

public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionSequenceBuilder HasType (Type type, bool fromDataAnnotation = false);
public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionSequenceBuilder? HasType (Type? type, bool fromDataAnnotation = false);
abstract member HasType : Type * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionSequenceBuilder
Public Function HasType (type As Type, Optional fromDataAnnotation As Boolean = false) As IConventionSequenceBuilder

Parameters

type
Type

The type of values returned by the sequence.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The same builder instance if the configuration was applied, null otherwise.

Applies to