SqlitePropertyBuilderExtensions Class

Definition

SQLite-specific extension methods for PropertyBuilder.

public static class SqlitePropertyBuilderExtensions
type SqlitePropertyBuilderExtensions = class
Public Module SqlitePropertyBuilderExtensions
Inheritance
SqlitePropertyBuilderExtensions

Remarks

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

Methods

CanSetGeometricDimension(IConventionPropertyBuilder, String, Boolean)

Returns a value indicating whether the given value can be set as the dimension for the column.

CanSetSrid(IConventionPropertyBuilder, Nullable<Int32>, Boolean)

Returns a value indicating whether the given value can be set as the SRID for the column.

ForSqliteHasColumnName(PropertyBuilder, String)

Configures the column that the property maps to when targeting SQLite.

ForSqliteHasColumnName<TProperty>(PropertyBuilder<TProperty>, String)

Configures the column that the property maps to when targeting SQLite.

ForSqliteHasColumnType(PropertyBuilder, String)

Configures the data type of the column that the property maps to when targeting SQLite.

ForSqliteHasColumnType<TProperty>(PropertyBuilder<TProperty>, String)

Configures the data type of the column that the property maps to when targeting SQLite.

ForSqliteHasDefaultValue(PropertyBuilder, Object)

Configures the default value for the column that the property maps to when targeting SQLite.

ForSqliteHasDefaultValue<TProperty>(PropertyBuilder<TProperty>, Object)

Configures the default value for the column that the property maps to when targeting SQLite.

ForSqliteHasDefaultValueSql(PropertyBuilder, String)

Configures the default value expression for the column that the property maps to when targeting SQLite.

ForSqliteHasDefaultValueSql<TProperty>(PropertyBuilder<TProperty>, String)

Configures the default value expression for the column that the property maps to when targeting SQLite.

ForSqliteHasDimension(IConventionPropertyBuilder, String, Boolean)
Obsolete.

Configures the dimension of the column that the property maps to when targeting SQLite.

ForSqliteHasSrid(IConventionPropertyBuilder, Nullable<Int32>, Boolean)
Obsolete.

Configures the SRID of the column that the property maps to when targeting SQLite.

ForSqliteHasSrid(PropertyBuilder, Int32)
Obsolete.

Configures the SRID of the column that the property maps to when targeting SQLite.

ForSqliteHasSrid<TProperty>(PropertyBuilder<TProperty>, Int32)
Obsolete.

Configures the SRID of the column that the property maps to when targeting SQLite.

HasGeometricDimension(IConventionPropertyBuilder, String, Boolean)

Configures the dimension of the column that the property maps to when targeting SQLite.

HasSrid(IConventionPropertyBuilder, Nullable<Int32>, Boolean)

Configures the SRID of the column that the property maps to when targeting SQLite.

HasSrid(PropertyBuilder, Int32)

Configures the SRID of the column that the property maps to when targeting SQLite.

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

Configures the SRID of the column that the property maps to when targeting SQLite.

Applies to