SqliteEntityTypeExtensions Class

Definition

Entity type extension methods for Sqlite-specific metadata.

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

Remarks

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

Methods

GetUseSqlReturningClauseConfigurationSource(IConventionEntityType)

Gets the configuration source for whether to use the SQL RETURNING clause when saving changes to the table.

IsSqlReturningClauseUsed(IReadOnlyEntityType)

Returns a value indicating whether to use the SQL RETURNING clause when saving changes to the table. The RETURNING clause is incompatible with certain Sqlite features, such as virtual tables or tables with AFTER triggers.

IsSqlReturningClauseUsed(IReadOnlyEntityType, StoreObjectIdentifier)

Returns a value indicating whether to use the SQL RETURNING clause when saving changes to the table. The RETURNING clause is incompatible with certain Sqlite features, such as virtual tables or tables with AFTER triggers.

UseSqlReturningClause(IConventionEntityType, Nullable<Boolean>, Boolean)

Sets a value indicating whether to use the SQL RETURNING clause when saving changes to the table. The RETURNING clause is incompatible with certain Sqlite features, such as virtual tables or tables with AFTER triggers.

UseSqlReturningClause(IConventionEntityType, Nullable<Boolean>, StoreObjectIdentifier, Boolean)

Sets a value indicating whether to use the SQL RETURNING clause when saving changes to the table. The RETURNING clause is incompatible with certain Sqlite features, such as virtual tables or tables with AFTER triggers.

UseSqlReturningClause(IMutableEntityType, Nullable<Boolean>)

Sets a value indicating whether to use the SQL RETURNING clause when saving changes to the table. The RETURNING clause is incompatible with certain Sqlite features, such as virtual tables or tables with AFTER triggers.

UseSqlReturningClause(IMutableEntityType, Nullable<Boolean>, StoreObjectIdentifier)

Sets a value indicating whether to use the SQL RETURNING clause when saving changes to the table. The RETURNING clause is incompatible with certain Sqlite features, such as virtual tables or tables with AFTER triggers.

Applies to