SqlServerEntityTypeMappingFragmentExtensions.IsSqlOutputClauseUsed Method

Definition

Returns a value indicating whether to use the SQL OUTPUT clause when saving changes to the associated table. The OUTPUT clause is incompatible with certain SQL Server features, such as tables with triggers.

public static bool IsSqlOutputClauseUsed (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityTypeMappingFragment fragment);
static member IsSqlOutputClauseUsed : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityTypeMappingFragment -> bool
<Extension()>
Public Function IsSqlOutputClauseUsed (fragment As IReadOnlyEntityTypeMappingFragment) As Boolean

Parameters

fragment
IReadOnlyEntityTypeMappingFragment

The entity type mapping fragment.

Returns

The configured value.

Applies to