Share via


IndexConfiguration.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.IndexConfiguration IsClustered ();
member this.IsClustered : unit -> System.Data.Entity.ModelConfiguration.Configuration.IndexConfiguration
Public Function IsClustered () As IndexConfiguration

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.IndexConfiguration IsClustered (bool clustered);
member this.IsClustered : bool -> System.Data.Entity.ModelConfiguration.Configuration.IndexConfiguration
Public Function IsClustered (clustered As Boolean) As IndexConfiguration

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