SqliteEntityTypeMappingFragmentExtensions.IsSqlReturningClauseUsed 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.IReadOnlyEntityTypeMappingFragment fragment);
static member IsSqlReturningClauseUsed : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityTypeMappingFragment -> bool
<Extension()>
Public Function IsSqlReturningClauseUsed (fragment As IReadOnlyEntityTypeMappingFragment) As Boolean

Parameters

fragment
IReadOnlyEntityTypeMappingFragment

The entity type mapping fragment.

Returns

The configured value.

Applies to