SqlServerPropertyExtensions.IsSparse 方法

定义

重载

IsSparse(IReadOnlyProperty)

返回一个值,该值指示属性的列是否稀疏。

IsSparse(IReadOnlyProperty, StoreObjectIdentifier)

返回一个值,该值指示属性的列是否稀疏。

IsSparse(IReadOnlyProperty)

返回一个值,该值指示属性的列是否稀疏。

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

参数

property
IReadOnlyProperty

属性。

返回

true 如果属性的列稀疏,则为 。

适用于

IsSparse(IReadOnlyProperty, StoreObjectIdentifier)

返回一个值,该值指示属性的列是否稀疏。

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

参数

property
IReadOnlyProperty

属性。

storeObject
StoreObjectIdentifier

存储对象的标识符。

返回

true 如果属性的列稀疏,则为 。

适用于