Share via


SqliteTableExtensions.IsSqlReturningClauseUsed(ITable) Method

Definition

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.

public static bool IsSqlReturningClauseUsed (this Microsoft.EntityFrameworkCore.Metadata.ITable table);
static member IsSqlReturningClauseUsed : Microsoft.EntityFrameworkCore.Metadata.ITable -> bool
<Extension()>
Public Function IsSqlReturningClauseUsed (table As ITable) As Boolean

Parameters

table
ITable

The table.

Returns

true if the SQL RETURNING clause is used to save changes to the table.

Applies to