SqlitePropertyBuilderExtensions.CanSetSrid 方法

定义

返回一个值,该值指示是否可以将给定值设置为列的 SRID。

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

参数

propertyBuilder
IConventionPropertyBuilder

要配置的属性的生成器。

srid
Nullable<Int32>

SRID。

fromDataAnnotation
Boolean

指示是否使用数据注释指定配置。

返回

true 如果给定值可以设置为列的 SRID,则为 。

注解

有关详细信息和示例,请参阅空间数据和使用 EF Core 访问 SQLite 数据库

适用于