SqliteNetTopologySuitePropertyBuilderExtensions.HasGeometricDimension Method

Definition

Overloads

HasGeometricDimension(PropertyBuilder, Ordinates)

Configures the dimension of the column that the property maps to when targeting SQLite.

HasGeometricDimension<TProperty>(PropertyBuilder<TProperty>, Ordinates)

Configures the dimension of the column that the property maps to when targeting SQLite.

HasGeometricDimension(PropertyBuilder, Ordinates)

Configures the dimension of the column that the property maps to when targeting SQLite.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder HasGeometricDimension (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder propertyBuilder, NetTopologySuite.Geometries.Ordinates ordinates);
static member HasGeometricDimension : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder * NetTopologySuite.Geometries.Ordinates -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
<Extension()>
Public Function HasGeometricDimension (propertyBuilder As PropertyBuilder, ordinates As Ordinates) As PropertyBuilder

Parameters

propertyBuilder
PropertyBuilder

The builder for the property being configured.

ordinates
NetTopologySuite.Geometries.Ordinates

The dimension ordinates.

Returns

The same builder instance so that multiple calls can be chained.

Applies to

HasGeometricDimension<TProperty>(PropertyBuilder<TProperty>, Ordinates)

Configures the dimension of the column that the property maps to when targeting SQLite.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> HasGeometricDimension<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> propertyBuilder, NetTopologySuite.Geometries.Ordinates ordinates);
static member HasGeometricDimension : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property> * NetTopologySuite.Geometries.Ordinates -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property>
<Extension()>
Public Function HasGeometricDimension(Of TProperty) (propertyBuilder As PropertyBuilder(Of TProperty), ordinates As Ordinates) As PropertyBuilder(Of TProperty)

Type Parameters

TProperty

Parameters

propertyBuilder
PropertyBuilder<TProperty>

The builder for the property being configured.

ordinates
NetTopologySuite.Geometries.Ordinates

The dimension ordinates.

Returns

The same builder instance so that multiple calls can be chained.

Applies to