Condividi tramite


SqlitePropertyBuilderExtensions.HasSrid Metodo

Definizione

Overload

HasSrid(PropertyBuilder, Int32)

Configura l'identificatore SRID della colonna a cui viene eseguito il mapping della proprietà durante la destinazione SQLite.

HasSrid(IConventionPropertyBuilder, Nullable<Int32>, Boolean)

Configura l'identificatore SRID della colonna a cui viene eseguito il mapping della proprietà durante la destinazione SQLite.

HasSrid<TProperty>(PropertyBuilder<TProperty>, Int32)

Configura l'identificatore SRID della colonna a cui viene eseguito il mapping della proprietà durante la destinazione SQLite.

HasSrid(PropertyBuilder, Int32)

Configura l'identificatore SRID della colonna a cui viene eseguito il mapping della proprietà durante la destinazione SQLite.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder HasSrid (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder propertyBuilder, int srid);
static member HasSrid : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder * int -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
<Extension()>
Public Function HasSrid (propertyBuilder As PropertyBuilder, srid As Integer) As PropertyBuilder

Parametri

propertyBuilder
PropertyBuilder

Generatore per la proprietà da configurare.

srid
Int32

The SRID.

Restituisce

Stessa istanza del generatore in modo che più chiamate possano essere concatenati.

Commenti

Per altre informazioni ed esempi, vedere Dati spaziali e Accesso ai database SQLite con EF Core .

Si applica a

HasSrid(IConventionPropertyBuilder, Nullable<Int32>, Boolean)

Configura l'identificatore SRID della colonna a cui viene eseguito il mapping della proprietà durante la destinazione SQLite.

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

Parametri

propertyBuilder
IConventionPropertyBuilder

Generatore per la proprietà da configurare.

srid
Nullable<Int32>

The SRID.

fromDataAnnotation
Boolean

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

Restituisce

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

Commenti

Per altre informazioni ed esempi, vedere Dati spaziali e Accesso ai database SQLite con EF Core .

Si applica a

HasSrid<TProperty>(PropertyBuilder<TProperty>, Int32)

Configura l'identificatore SRID della colonna a cui viene eseguito il mapping della proprietà durante la destinazione SQLite.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> HasSrid<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> propertyBuilder, int srid);
static member HasSrid : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property> * int -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property>
<Extension()>
Public Function HasSrid(Of TProperty) (propertyBuilder As PropertyBuilder(Of TProperty), srid As Integer) As PropertyBuilder(Of TProperty)

Parametri di tipo

TProperty

Parametri

propertyBuilder
PropertyBuilder<TProperty>

Generatore per la proprietà da configurare.

srid
Int32

The SRID.

Restituisce

Stessa istanza del generatore in modo che più chiamate possano essere concatenati.

Commenti

Per altre informazioni ed esempi, vedere Dati spaziali e Accesso ai database SQLite con EF Core .

Si applica a