SqlServerKeyExtensions.IsClustered Method

Definition

Overloads

IsClustered(IKey)

Returns a value indicating whether the key is clustered.

IsClustered(IReadOnlyKey)

Returns a value indicating whether the key is clustered.

IsClustered(IKey, StoreObjectIdentifier)

Returns a value indicating whether the key is clustered.

IsClustered(IReadOnlyKey, StoreObjectIdentifier)

Returns a value indicating whether the key is clustered.

IsClustered(IKey)

Returns a value indicating whether the key is clustered.

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

Parameters

key
IKey

The key.

Returns

true if the key is clustered.

Applies to

IsClustered(IReadOnlyKey)

Returns a value indicating whether the key is clustered.

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

Parameters

key
IReadOnlyKey

The key.

Returns

true if the key is clustered.

Applies to

IsClustered(IKey, StoreObjectIdentifier)

Returns a value indicating whether the key is clustered.

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

Parameters

key
IKey

The key.

storeObject
StoreObjectIdentifier

The identifier of the store object.

Returns

true if the key is clustered.

Applies to

IsClustered(IReadOnlyKey, StoreObjectIdentifier)

Returns a value indicating whether the key is clustered.

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

Parameters

key
IReadOnlyKey

The key.

storeObject
StoreObjectIdentifier

The identifier of the store object.

Returns

true if the key is clustered.

Applies to