Share via


PrimaryKeyIndexConfiguration.IsClustered Method

Definition

Overloads

IsClustered()

Configures the index to be clustered.

IsClustered(Boolean)

Configures whether or not the index will be clustered.

IsClustered()

Configures the index to be clustered.

public System.Data.Entity.ModelConfiguration.Configuration.PrimaryKeyIndexConfiguration IsClustered ();
member this.IsClustered : unit -> System.Data.Entity.ModelConfiguration.Configuration.PrimaryKeyIndexConfiguration
Public Function IsClustered () As PrimaryKeyIndexConfiguration

Returns

The same IndexConfigurationBase instance so that multiple calls can be chained.

Applies to

IsClustered(Boolean)

Configures whether or not the index will be clustered.

public System.Data.Entity.ModelConfiguration.Configuration.PrimaryKeyIndexConfiguration IsClustered (bool clustered);
member this.IsClustered : bool -> System.Data.Entity.ModelConfiguration.Configuration.PrimaryKeyIndexConfiguration
Public Function IsClustered (clustered As Boolean) As PrimaryKeyIndexConfiguration

Parameters

clustered
Boolean

Value indicating if the index should be clustered or not.

Returns

The same IndexConfigurationBase instance so that multiple calls can be chained.

Applies to