Share via


SqlitePropertyExtensions Class

Definition

Extension methods for IProperty for SQLite metadata.

[System.Runtime.CompilerServices.Nullable(0)]
public static class SqlitePropertyExtensions
public static class SqlitePropertyExtensions
[<System.Runtime.CompilerServices.Nullable(0)>]
type SqlitePropertyExtensions = class
type SqlitePropertyExtensions = class
Public Module SqlitePropertyExtensions
Inheritance
SqlitePropertyExtensions
Attributes

Remarks

See Modeling entity types and relationships, and Accessing SQLite databases with EF Core for more information and examples.

Methods

Name Description
GetDefaultValueGenerationStrategy(IReadOnlyProperty)

Returns the default SqliteValueGenerationStrategy to use for the property.

GetGeometricDimension(IProperty)

Returns the dimension to use when creating a column for this property.

GetGeometricDimensionConfigurationSource(IConventionProperty)

Gets the ConfigurationSource for the column dimension.

GetSrid(IProperty, 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.

GetSrid(IReadOnlyProperty, StoreObjectIdentifier)

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.

GetSridConfigurationSource(IConventionProperty)

Gets the ConfigurationSource for the column SRID.

GetValueGenerationStrategy(IReadOnlyProperty, StoreObjectIdentifier)

Returns the SqliteValueGenerationStrategy to use for the property.

GetValueGenerationStrategy(IReadOnlyProperty)

Returns the SqliteValueGenerationStrategy to use for the property.

GetValueGenerationStrategy(IReadOnlyRelationalPropertyOverrides)

Returns the SqliteValueGenerationStrategy to use for the property.

GetValueGenerationStrategyConfigurationSource(IConventionProperty, StoreObjectIdentifier)

Returns the ConfigurationSource for the SqliteValueGenerationStrategy for a particular table.

GetValueGenerationStrategyConfigurationSource(IConventionProperty)

Gets the ConfigurationSource for the value generation strategy.

GetValueGenerationStrategyConfigurationSource(IConventionRelationalPropertyOverrides)

Returns the ConfigurationSource for the SqliteValueGenerationStrategy for a particular table.

SetGeometricDimension(IConventionProperty, String, Boolean)

Sets the dimension to use when creating a column for this property.

SetGeometricDimension(IMutableProperty, String)

Sets the dimension to use when creating a column for this property.

SetSrid(IConventionProperty, Nullable<Int32>, Boolean)

Sets the SRID to use when creating a column for this property.

SetSrid(IMutableProperty, Nullable<Int32>)

Sets the SRID to use when creating a column for this property.

SetValueGenerationStrategy(IConventionProperty, Nullable<SqliteValueGenerationStrategy>, Boolean)

Sets the SqliteValueGenerationStrategy to use for the property.

SetValueGenerationStrategy(IConventionProperty, Nullable<SqliteValueGenerationStrategy>, StoreObjectIdentifier, Boolean)

Sets the SqliteValueGenerationStrategy to use for the property for a particular table.

SetValueGenerationStrategy(IConventionRelationalPropertyOverrides, Nullable<SqliteValueGenerationStrategy>, Boolean)

Sets the SqliteValueGenerationStrategy to use for the property for a particular table.

SetValueGenerationStrategy(IMutableProperty, Nullable<SqliteValueGenerationStrategy>, StoreObjectIdentifier)

Sets the SqliteValueGenerationStrategy to use for the property for a particular table.

SetValueGenerationStrategy(IMutableProperty, Nullable<SqliteValueGenerationStrategy>)

Sets the SqliteValueGenerationStrategy to use for the property.

SetValueGenerationStrategy(IMutableRelationalPropertyOverrides, Nullable<SqliteValueGenerationStrategy>)

Sets the SqliteValueGenerationStrategy to use for the property for a particular table.

Applies to