Compartir a través de


SqlServerIndexExtensions.SetSortInTempDb Método

Definición

Sobrecargas

SetSortInTempDb(IMutableIndex, Nullable<Boolean>)

Establece un valor que indica si el índice está ordenado en tempdb.

SetSortInTempDb(IConventionIndex, Nullable<Boolean>, Boolean)

Establece un valor que indica si el índice está ordenado en tempdb.

SetSortInTempDb(IMutableIndex, Nullable<Boolean>)

Establece un valor que indica si el índice está ordenado en tempdb.

public static void SetSortInTempDb (this Microsoft.EntityFrameworkCore.Metadata.IMutableIndex index, bool? sortInTempDb);
static member SetSortInTempDb : Microsoft.EntityFrameworkCore.Metadata.IMutableIndex * Nullable<bool> -> unit
<Extension()>
Public Sub SetSortInTempDb (index As IMutableIndex, sortInTempDb As Nullable(Of Boolean))

Parámetros

index
IMutableIndex

Índice.

sortInTempDb
Nullable<Boolean>

Valor que se va a establecer.

Se aplica a

SetSortInTempDb(IConventionIndex, Nullable<Boolean>, Boolean)

Establece un valor que indica si el índice está ordenado en tempdb.

public static bool? SetSortInTempDb (this Microsoft.EntityFrameworkCore.Metadata.IConventionIndex index, bool? sortInTempDb, bool fromDataAnnotation = false);
static member SetSortInTempDb : Microsoft.EntityFrameworkCore.Metadata.IConventionIndex * Nullable<bool> * bool -> Nullable<bool>
<Extension()>
Public Function SetSortInTempDb (index As IConventionIndex, sortInTempDb As Nullable(Of Boolean), Optional fromDataAnnotation As Boolean = false) As Nullable(Of Boolean)

Parámetros

index
IConventionIndex

Índice.

sortInTempDb
Nullable<Boolean>

Valor que se va a establecer.

fromDataAnnotation
Boolean

Indica si la configuración se especificó mediante una anotación de datos.

Devoluciones

El valor configurado.

Se aplica a