SqlServerIndexExtensions.SetSortInTempDb Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
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>)
- Source:
- SqlServerIndexExtensions.cs
- Source:
- SqlServerIndexExtensions.cs
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.
Se aplica a
SetSortInTempDb(IConventionIndex, Nullable<Boolean>, Boolean)
- Source:
- SqlServerIndexExtensions.cs
- Source:
- SqlServerIndexExtensions.cs
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.
- fromDataAnnotation
- Boolean
Indica si la configuración se especificó mediante una anotación de datos.
Devoluciones
El valor configurado.