IndexConfiguration.IsClustered Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Entity Framework