SqliteTableBuilderExtensions Class

Definition

Sqlite-specific extension methods for TableBuilder.

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

Methods

UseSqlReturningClause(OwnedNavigationTableBuilder, Boolean)

Configures 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(SplitTableBuilder, Boolean)

Configures 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(TableBuilder, Boolean)

Configures 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<TEntity>(SplitTableBuilder<TEntity>, Boolean)

Configures 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<TEntity>(TableBuilder<TEntity>, Boolean)

Configures 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<TOwnerEntity,TDependentEntity>(OwnedNavigationTableBuilder<TOwnerEntity,TDependentEntity>, Boolean)

Configures 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