SqlitePropertyExtensions.GetSrid Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetSrid(IProperty) |
Returns the SRID to use when creating a column for this property. |
GetSrid(IReadOnlyProperty) |
Returns the SRID to use when creating a column for this property. |
GetSrid(IProperty, StoreObjectIdentifier) |
Returns the SRID to use when creating a column for this property. |
GetSrid(IReadOnlyProperty, StoreObjectIdentifier) |
Returns the SRID to use when creating a column for this property. |
GetSrid(IProperty)
Returns the SRID to use when creating a column for this property.
public static int? GetSrid (this Microsoft.EntityFrameworkCore.Metadata.IProperty property);
static member GetSrid : Microsoft.EntityFrameworkCore.Metadata.IProperty -> Nullable<int>
<Extension()>
Public Function GetSrid (property As IProperty) As Nullable(Of Integer)
Parameters
- property
- IProperty
The property.
Returns
The SRID to use when creating a column for this property.
Applies to
GetSrid(IReadOnlyProperty)
Returns the SRID to use when creating a column for this property.
public static int? GetSrid (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property);
static member GetSrid : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty -> Nullable<int>
<Extension()>
Public Function GetSrid (property As IReadOnlyProperty) As Nullable(Of Integer)
Parameters
- property
- IReadOnlyProperty
The property.
Returns
The SRID to use when creating a column for this property.
Applies to
GetSrid(IProperty, StoreObjectIdentifier)
Returns the SRID to use when creating a column for this property.
public static int? GetSrid (this Microsoft.EntityFrameworkCore.Metadata.IProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetSrid : Microsoft.EntityFrameworkCore.Metadata.IProperty * StoreObjectIdentifier -> Nullable<int>
<Extension()>
Public Function GetSrid (property As IProperty, ByRef storeObject As StoreObjectIdentifier) As Nullable(Of Integer)
Parameters
- property
- IProperty
The property.
- storeObject
- StoreObjectIdentifier
The identifier of the store object.
Returns
The SRID to use when creating a column for this property.
Applies to
GetSrid(IReadOnlyProperty, StoreObjectIdentifier)
Returns the SRID to use when creating a column for this property.
public static int? GetSrid (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetSrid : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty * StoreObjectIdentifier -> Nullable<int>
<Extension()>
Public Function GetSrid (property As IReadOnlyProperty, ByRef storeObject As StoreObjectIdentifier) As Nullable(Of Integer)
Parameters
- property
- IReadOnlyProperty
The property.
- storeObject
- StoreObjectIdentifier
The identifier of the store object.
Returns
The SRID to use when creating a column for this property.
Applies to
Entity Framework