SqlitePropertyBuilderExtensions.CanSetSrid 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.
Returns a value indicating whether the given value can be set as the SRID for the column.
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
	Parameters
- propertyBuilder
 - IConventionPropertyBuilder
 
The builder for the property being configured.
- fromDataAnnotation
 - Boolean
 
Indicates whether the configuration was specified using a data annotation.
Returns
true if the given value can be set as the SRID for the column.
Remarks
See Spatial data, and Accessing SQLite databases with EF Core for more information and examples.