SqlServerPropertyExtensions.SetIsSparse Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SetIsSparse(IMutableProperty, Nullable<Boolean>) |
Sets a value indicating whether the property's column is sparse. |
SetIsSparse(IConventionProperty, Nullable<Boolean>, Boolean) |
Sets a value indicating whether the property's column is sparse. |
SetIsSparse(IMutableProperty, Nullable<Boolean>)
Sets a value indicating whether the property's column is sparse.
public static void SetIsSparse (this Microsoft.EntityFrameworkCore.Metadata.IMutableProperty property, bool? sparse);
static member SetIsSparse : Microsoft.EntityFrameworkCore.Metadata.IMutableProperty * Nullable<bool> -> unit
<Extension()>
Public Sub SetIsSparse (property As IMutableProperty, sparse As Nullable(Of Boolean))
Parameters
- property
- IMutableProperty
The property.
Applies to
SetIsSparse(IConventionProperty, Nullable<Boolean>, Boolean)
Sets a value indicating whether the property's column is sparse.
public static bool? SetIsSparse (this Microsoft.EntityFrameworkCore.Metadata.IConventionProperty property, bool? sparse, bool fromDataAnnotation = false);
static member SetIsSparse : Microsoft.EntityFrameworkCore.Metadata.IConventionProperty * Nullable<bool> * bool -> Nullable<bool>
<Extension()>
Public Function SetIsSparse (property As IConventionProperty, sparse As Nullable(Of Boolean), Optional fromDataAnnotation As Boolean = false) As Nullable(Of Boolean)
Parameters
- property
- IConventionProperty
The property.
- fromDataAnnotation
- Boolean
Indicates whether the configuration was specified using a data annotation.
Returns
The configured value.
Applies to
Entity Framework