SqlServerPropertyExtensions.IsSparse Method

Definition

Overloads

IsSparse(IReadOnlyProperty)

Returns a value indicating whether the property's column is sparse.

IsSparse(IReadOnlyProperty, StoreObjectIdentifier)

Returns a value indicating whether the property's column is sparse.

IsSparse(IReadOnlyProperty)

Returns a value indicating whether the property's column is sparse.

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)

Parameters

property
IReadOnlyProperty

The property.

Returns

true if the property's column is sparse.

Applies to

IsSparse(IReadOnlyProperty, StoreObjectIdentifier)

Returns a value indicating whether the property's column is sparse.

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)

Parameters

property
IReadOnlyProperty

The property.

storeObject
StoreObjectIdentifier

The identifier of the store object.

Returns

true if the property's column is sparse.

Applies to