Share via


SqliteTableBuilderExtensions Class

Definition

Sqlite-specific extension methods for TableBuilder.

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

Methods

Name Description
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