Share via


RelationalElementTypeExtensions.SetIsFixedLength Method

Definition

Overloads

SetIsFixedLength(IMutableElementType, Nullable<Boolean>)

Sets a flag indicating whether the elements are capable of storing only fixed-length data, such as strings.

SetIsFixedLength(IConventionElementType, Nullable<Boolean>, Boolean)

Sets a flag indicating whether the elements are capable of storing only fixed-length data, such as strings.

SetIsFixedLength(IMutableElementType, Nullable<Boolean>)

Sets a flag indicating whether the elements are capable of storing only fixed-length data, such as strings.

public static void SetIsFixedLength (this Microsoft.EntityFrameworkCore.Metadata.IMutableElementType elementType, bool? fixedLength);
static member SetIsFixedLength : Microsoft.EntityFrameworkCore.Metadata.IMutableElementType * Nullable<bool> -> unit
<Extension()>
Public Sub SetIsFixedLength (elementType As IMutableElementType, fixedLength As Nullable(Of Boolean))

Parameters

elementType
IMutableElementType

The element.

fixedLength
Nullable<Boolean>

A value indicating whether the elements are constrained to fixed length values.

Applies to

SetIsFixedLength(IConventionElementType, Nullable<Boolean>, Boolean)

Sets a flag indicating whether the elements are capable of storing only fixed-length data, such as strings.

public static bool? SetIsFixedLength (this Microsoft.EntityFrameworkCore.Metadata.IConventionElementType elementType, bool? fixedLength, bool fromDataAnnotation = false);
static member SetIsFixedLength : Microsoft.EntityFrameworkCore.Metadata.IConventionElementType * Nullable<bool> * bool -> Nullable<bool>
<Extension()>
Public Function SetIsFixedLength (elementType As IConventionElementType, fixedLength As Nullable(Of Boolean), Optional fromDataAnnotation As Boolean = false) As Nullable(Of Boolean)

Parameters

elementType
IConventionElementType

The element.

fixedLength
Nullable<Boolean>

A value indicating whether the element are constrained to fixed length values.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The configured value.

Applies to