SqlServerIndexExtensions.SetIsClustered 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
| SetIsClustered(IMutableIndex, Nullable<Boolean>) | 
						 Sets a value indicating whether the index is clustered.  | 
        	
| SetIsClustered(IConventionIndex, Nullable<Boolean>, Boolean) | 
						 Sets a value indicating whether the index is clustered.  | 
        	
SetIsClustered(IMutableIndex, Nullable<Boolean>)
- Source:
 - SqlServerIndexExtensions.cs
 
- Source:
 - SqlServerIndexExtensions.cs
 
- Source:
 - SqlServerIndexExtensions.cs
 
- Source:
 - SqlServerIndexExtensions.cs
 
- Source:
 - SqlServerIndexExtensions.cs
 
- Source:
 - SqlServerIndexExtensions.cs
 
- Source:
 - SqlServerIndexExtensions.cs
 
Sets a value indicating whether the index is clustered.
public static void SetIsClustered(this Microsoft.EntityFrameworkCore.Metadata.IMutableIndex index, bool? value);
	static member SetIsClustered : Microsoft.EntityFrameworkCore.Metadata.IMutableIndex * Nullable<bool> -> unit
	<Extension()>
Public Sub SetIsClustered (index As IMutableIndex, value As Nullable(Of Boolean))
	Parameters
- index
 - IMutableIndex
 
The index.
Applies to
SetIsClustered(IConventionIndex, Nullable<Boolean>, Boolean)
- Source:
 - SqlServerIndexExtensions.cs
 
- Source:
 - SqlServerIndexExtensions.cs
 
- Source:
 - SqlServerIndexExtensions.cs
 
- Source:
 - SqlServerIndexExtensions.cs
 
- Source:
 - SqlServerIndexExtensions.cs
 
- Source:
 - SqlServerIndexExtensions.cs
 
- Source:
 - SqlServerIndexExtensions.cs
 
Sets a value indicating whether the index is clustered.
public static void SetIsClustered(this Microsoft.EntityFrameworkCore.Metadata.IConventionIndex index, bool? value, bool fromDataAnnotation = false);
	public static bool? SetIsClustered(this Microsoft.EntityFrameworkCore.Metadata.IConventionIndex index, bool? value, bool fromDataAnnotation = false);
	static member SetIsClustered : Microsoft.EntityFrameworkCore.Metadata.IConventionIndex * Nullable<bool> * bool -> unit
	static member SetIsClustered : Microsoft.EntityFrameworkCore.Metadata.IConventionIndex * Nullable<bool> * bool -> Nullable<bool>
	<Extension()>
Public Sub SetIsClustered (index As IConventionIndex, value As Nullable(Of Boolean), Optional fromDataAnnotation As Boolean = false)
	<Extension()>
Public Function SetIsClustered (index As IConventionIndex, value As Nullable(Of Boolean), Optional fromDataAnnotation As Boolean = false) As Nullable(Of Boolean)
	Parameters
- index
 - IConventionIndex
 
The index.
- fromDataAnnotation
 - Boolean
 
Indicates whether the configuration was specified using a data annotation.
Returns
The configured value.