Share via


RelationalElementTypeExtensions.GetStoreType Method

Definition

Overloads

GetStoreType(IElementType)

Returns the database type of the elements.

GetStoreType(IReadOnlyElementType)

Returns the database type of the elements, or null if the database type could not be found.

GetStoreType(IElementType)

Returns the database type of the elements.

public static string GetStoreType (this Microsoft.EntityFrameworkCore.Metadata.IElementType elementType);
static member GetStoreType : Microsoft.EntityFrameworkCore.Metadata.IElementType -> string
<Extension()>
Public Function GetStoreType (elementType As IElementType) As String

Parameters

elementType
IElementType

The element.

Returns

The database type of the elements.

Applies to

GetStoreType(IReadOnlyElementType)

Returns the database type of the elements, or null if the database type could not be found.

public static string? GetStoreType (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyElementType elementType);
static member GetStoreType : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyElementType -> string
<Extension()>
Public Function GetStoreType (elementType As IReadOnlyElementType) As String

Parameters

elementType
IReadOnlyElementType

The element.

Returns

The database type of the elements, or null if the database type could not be found.

Applies to