SqlitePropertyExtensions.SetGeometricDimension Method

Definition

Overloads

SetGeometricDimension(IMutableProperty, String)

Sets the dimension to use when creating a column for this property.

SetGeometricDimension(IConventionProperty, String, Boolean)

Sets the dimension to use when creating a column for this property.

SetGeometricDimension(IMutableProperty, String)

Sets the dimension to use when creating a column for this property.

public static void SetGeometricDimension (this Microsoft.EntityFrameworkCore.Metadata.IMutableProperty property, string value);
static member SetGeometricDimension : Microsoft.EntityFrameworkCore.Metadata.IMutableProperty * string -> unit
<Extension()>
Public Sub SetGeometricDimension (property As IMutableProperty, value As String)

Parameters

property
IMutableProperty

The property.

value
String

The dimension.

Applies to

SetGeometricDimension(IConventionProperty, String, Boolean)

Sets the dimension to use when creating a column for this property.

public static void SetGeometricDimension (this Microsoft.EntityFrameworkCore.Metadata.IConventionProperty property, string value, bool fromDataAnnotation = false);
static member SetGeometricDimension : Microsoft.EntityFrameworkCore.Metadata.IConventionProperty * string * bool -> unit
<Extension()>
Public Sub SetGeometricDimension (property As IConventionProperty, value As String, Optional fromDataAnnotation As Boolean = false)

Parameters

property
IConventionProperty

The property.

value
String

The dimension.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Applies to