Condividi tramite


SqlServerPropertyBuilderExtensions.IsSparse Metodo

Definizione

Overload

IsSparse(PropertyBuilder, Boolean)

Configura se la colonna della proprietà viene creata come sparse durante la destinazione SQL Server.

IsSparse(IConventionPropertyBuilder, Nullable<Boolean>, Boolean)

Configura se la colonna della proprietà viene creata come sparse durante la destinazione SQL Server.

IsSparse<TProperty>(PropertyBuilder<TProperty>, Boolean)

Configura se la colonna della proprietà viene creata come sparse durante la destinazione SQL Server.

IsSparse(PropertyBuilder, Boolean)

Configura se la colonna della proprietà viene creata come sparse durante la destinazione SQL Server.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder IsSparse (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder propertyBuilder, bool sparse = true);
static member IsSparse : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
<Extension()>
Public Function IsSparse (propertyBuilder As PropertyBuilder, Optional sparse As Boolean = true) As PropertyBuilder

Parametri

propertyBuilder
PropertyBuilder

Generatore per la proprietà configurata.

sparse
Boolean

Valore che indica se la colonna della proprietà viene creata come sparse.

Restituisce

Generatore per configurare ulteriormente la proprietà.

Commenti

Vedere Modellazione di tipi di entità e relazionie accesso a SQL Server e Azure SQL database con EF Core per altre informazioni ed esempi. Vedere anche colonne sparse per informazioni generali sulle colonne SQL Server sparse.

Si applica a

IsSparse(IConventionPropertyBuilder, Nullable<Boolean>, Boolean)

Configura se la colonna della proprietà viene creata come sparse durante la destinazione SQL Server.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder? IsSparse (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder propertyBuilder, bool? sparse, bool fromDataAnnotation = false);
static member IsSparse : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder * Nullable<bool> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder
<Extension()>
Public Function IsSparse (propertyBuilder As IConventionPropertyBuilder, sparse As Nullable(Of Boolean), Optional fromDataAnnotation As Boolean = false) As IConventionPropertyBuilder

Parametri

propertyBuilder
IConventionPropertyBuilder

Generatore per la proprietà configurata.

sparse
Nullable<Boolean>

Valore che indica se la colonna della proprietà viene creata come sparse.

fromDataAnnotation
Boolean

Indica se la configurazione è stata specificata usando un'annotazione dati.

Restituisce

Stessa istanza del generatore se la configurazione è stata applicata, null in caso contrario.

Commenti

Vedere Modellazione di tipi di entità e relazionie accesso a SQL Server e Azure SQL database con EF Core per altre informazioni ed esempi. Vedere anche colonne sparse per informazioni generali sulle colonne SQL Server sparse.

Si applica a

IsSparse<TProperty>(PropertyBuilder<TProperty>, Boolean)

Configura se la colonna della proprietà viene creata come sparse durante la destinazione SQL Server.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> IsSparse<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> propertyBuilder, bool sparse = true);
static member IsSparse : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property>
<Extension()>
Public Function IsSparse(Of TProperty) (propertyBuilder As PropertyBuilder(Of TProperty), Optional sparse As Boolean = true) As PropertyBuilder(Of TProperty)

Parametri di tipo

TProperty

Parametri

propertyBuilder
PropertyBuilder<TProperty>

Generatore per la proprietà configurata.

sparse
Boolean

Valore che indica se la colonna della proprietà viene creata come sparse.

Restituisce

Generatore per configurare ulteriormente la proprietà.

Commenti

Vedere Modellazione di tipi di entità e relazionie accesso a SQL Server e Azure SQL database con EF Core per altre informazioni ed esempi. Vedere anche colonne sparse per informazioni generali sulle colonne SQL Server sparse.

Si applica a