Udostępnij za pośrednictwem


SqlServerIndexBuilderExtensions.IsCreatedOnline Metoda

Definicja

Przeciążenia

IsCreatedOnline(IndexBuilder, Boolean)

Określa, czy indeks jest tworzony z opcją online podczas określania wartości docelowej SQL Server.

IsCreatedOnline(IConventionIndexBuilder, Nullable<Boolean>, Boolean)

Określa, czy indeks jest tworzony z opcją online podczas określania wartości docelowej SQL Server.

IsCreatedOnline<TEntity>(IndexBuilder<TEntity>, Boolean)

Określa, czy indeks jest tworzony z opcją online podczas określania wartości docelowej SQL Server.

IsCreatedOnline(IndexBuilder, Boolean)

Określa, czy indeks jest tworzony z opcją online podczas określania wartości docelowej SQL Server.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder IsCreatedOnline (this Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder indexBuilder, bool createdOnline = true);
static member IsCreatedOnline : Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder
<Extension()>
Public Function IsCreatedOnline (indexBuilder As IndexBuilder, Optional createdOnline As Boolean = true) As IndexBuilder

Parametry

indexBuilder
IndexBuilder

Konstruktor dla konfigurowanego indeksu.

createdOnline
Boolean

Wartość wskazująca, czy indeks jest tworzony z opcją online.

Zwraca

Konstruktor do dalszego konfigurowania indeksu.

Uwagi

Aby uzyskać więcej informacji, zobacz Modelowanie typów jednostek i relacji oraz Uzyskiwanie dostępu do baz danych SQL Server i Azure SQL za pomocą programu EF Core.

Dotyczy

IsCreatedOnline(IConventionIndexBuilder, Nullable<Boolean>, Boolean)

Określa, czy indeks jest tworzony z opcją online podczas określania wartości docelowej SQL Server.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionIndexBuilder IsCreatedOnline (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionIndexBuilder indexBuilder, bool? createdOnline, bool fromDataAnnotation = false);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionIndexBuilder? IsCreatedOnline (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionIndexBuilder indexBuilder, bool? createdOnline, bool fromDataAnnotation = false);
static member IsCreatedOnline : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionIndexBuilder * Nullable<bool> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionIndexBuilder
<Extension()>
Public Function IsCreatedOnline (indexBuilder As IConventionIndexBuilder, createdOnline As Nullable(Of Boolean), Optional fromDataAnnotation As Boolean = false) As IConventionIndexBuilder

Parametry

indexBuilder
IConventionIndexBuilder

Konstruktor dla konfigurowanego indeksu.

createdOnline
Nullable<Boolean>

Wartość wskazująca, czy indeks jest tworzony z opcją online.

fromDataAnnotation
Boolean

Wskazuje, czy konfiguracja została określona przy użyciu adnotacji danych.

Zwraca

To samo wystąpienie konstruktora, jeśli konfiguracja została zastosowana, null w przeciwnym razie.

Uwagi

Aby uzyskać więcej informacji, zobacz Modelowanie typów jednostek i relacji oraz Uzyskiwanie dostępu do baz danych SQL Server i Azure SQL za pomocą programu EF Core.

Dotyczy

IsCreatedOnline<TEntity>(IndexBuilder<TEntity>, Boolean)

Określa, czy indeks jest tworzony z opcją online podczas określania wartości docelowej SQL Server.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder<TEntity> IsCreatedOnline<TEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder<TEntity> indexBuilder, bool createdOnline = true);
static member IsCreatedOnline : Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder<'Entity> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder<'Entity>
<Extension()>
Public Function IsCreatedOnline(Of TEntity) (indexBuilder As IndexBuilder(Of TEntity), Optional createdOnline As Boolean = true) As IndexBuilder(Of TEntity)

Parametry typu

TEntity

Parametry

indexBuilder
IndexBuilder<TEntity>

Konstruktor dla konfigurowanego indeksu.

createdOnline
Boolean

Wartość wskazująca, czy indeks jest tworzony z opcją online.

Zwraca

IndexBuilder<TEntity>

Konstruktor do dalszego konfigurowania indeksu.

Uwagi

Aby uzyskać więcej informacji, zobacz Modelowanie typów jednostek i relacji oraz Uzyskiwanie dostępu do baz danych SQL Server i Azure SQL za pomocą programu EF Core.

Dotyczy