SqlServerPropertyBuilderExtensions.IsSparse Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
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.
- 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.