SqliteComplexTypePropertyBuilderExtensions.HasSrid 方法

定義

多載

HasSrid(ComplexTypePropertyBuilder, Int32)

設定以 SQLite 為目標時,屬性所對應之資料行的 SRID。

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

設定以 SQLite 為目標時,屬性所對應之資料行的 SRID。

HasSrid(ComplexTypePropertyBuilder, Int32)

設定以 SQLite 為目標時,屬性所對應之資料行的 SRID。

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

參數

propertyBuilder
ComplexTypePropertyBuilder

要設定之屬性的產生器。

srid
Int32

SRID。

傳回

相同的產生器實例,以便鏈結多個呼叫。

備註

如需詳細資訊和範例,請參閱使用 EF Core 存取 SQLite 資料庫的空間資料

適用於

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

設定以 SQLite 為目標時,屬性所對應之資料行的 SRID。

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

類型參數

TProperty

參數

propertyBuilder
ComplexTypePropertyBuilder<TProperty>

要設定之屬性的產生器。

srid
Int32

SRID。

傳回

相同的產生器實例,以便鏈結多個呼叫。

備註

如需詳細資訊和範例,請參閱使用 EF Core 存取 SQLite 資料庫的空間資料

適用於