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