Share via


RelationalElementTypeExtensions.IsFixedLength Method

Definition

Overloads

IsFixedLength(IReadOnlyElementType)

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

IsFixedLength(IReadOnlyElementType, StoreObjectIdentifier)

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

IsFixedLength(IReadOnlyElementType)

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

public static bool? IsFixedLength (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyElementType elementType);
static member IsFixedLength : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyElementType -> Nullable<bool>
<Extension()>
Public Function IsFixedLength (elementType As IReadOnlyElementType) As Nullable(Of Boolean)

Parameters

elementType
IReadOnlyElementType

The element.

Returns

A flag indicating whether the elements arecapable of storing only fixed-length data, such as strings.

Applies to

IsFixedLength(IReadOnlyElementType, StoreObjectIdentifier)

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

public static bool? IsFixedLength (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyElementType elementType, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member IsFixedLength : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyElementType * StoreObjectIdentifier -> Nullable<bool>
<Extension()>
Public Function IsFixedLength (elementType As IReadOnlyElementType, ByRef storeObject As StoreObjectIdentifier) As Nullable(Of Boolean)

Parameters

elementType
IReadOnlyElementType

The element.

storeObject
StoreObjectIdentifier

The identifier of the table-like store object containing the column.

Returns

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

Applies to