RelationalElementTypeExtensions.IsFixedLength 方法

定义

重载

IsFixedLength(IReadOnlyElementType)

返回一个标志,指示元素是否能够仅存储固定长度的数据,例如字符串。

IsFixedLength(IReadOnlyElementType, StoreObjectIdentifier)

返回一个标志,指示元素是否能够仅存储固定长度的数据,例如字符串。

IsFixedLength(IReadOnlyElementType)

返回一个标志,指示元素是否能够仅存储固定长度的数据,例如字符串。

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)

参数

elementType
IReadOnlyElementType

元素。

返回

一个标志,指示元素是否可以仅存储固定长度的数据,例如字符串。

适用于

IsFixedLength(IReadOnlyElementType, StoreObjectIdentifier)

返回一个标志,指示元素是否能够仅存储固定长度的数据,例如字符串。

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)

参数

elementType
IReadOnlyElementType

元素。

storeObject
StoreObjectIdentifier

包含列的类似表的存储对象的标识符。

返回

一个标志,指示元素是否能够仅存储固定长度的数据,例如字符串。

适用于