Condividi tramite


SqlServerEntityTypeExtensions.IsSqlOutputClauseUsed Metodo

Definizione

Overload

IsSqlOutputClauseUsed(IReadOnlyEntityType)

Restituisce un valore che indica se utilizzare la clausola SQL OUTPUT durante il salvataggio delle modifiche alla tabella. La clausola OUTPUT non è compatibile con determinate funzionalità di SQL Server, ad esempio tabelle con trigger.

IsSqlOutputClauseUsed(IReadOnlyEntityType, StoreObjectIdentifier)

Restituisce un valore che indica se utilizzare la clausola SQL OUTPUT durante il salvataggio delle modifiche alla tabella specificata. La clausola OUTPUT non è compatibile con determinate funzionalità di SQL Server, ad esempio tabelle con trigger.

IsSqlOutputClauseUsed(IReadOnlyEntityType)

Restituisce un valore che indica se utilizzare la clausola SQL OUTPUT durante il salvataggio delle modifiche alla tabella. La clausola OUTPUT non è compatibile con determinate funzionalità di SQL Server, ad esempio tabelle con trigger.

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

Parametri

entityType
IReadOnlyEntityType

Tipo di entità.

Restituisce

true se la clausola SQL OUTPUT viene utilizzata per salvare le modifiche apportate alla tabella.

Si applica a

IsSqlOutputClauseUsed(IReadOnlyEntityType, StoreObjectIdentifier)

Restituisce un valore che indica se utilizzare la clausola SQL OUTPUT durante il salvataggio delle modifiche alla tabella specificata. La clausola OUTPUT non è compatibile con determinate funzionalità di SQL Server, ad esempio tabelle con trigger.

public static bool IsSqlOutputClauseUsed (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType entityType, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member IsSqlOutputClauseUsed : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType * StoreObjectIdentifier -> bool
<Extension()>
Public Function IsSqlOutputClauseUsed (entityType As IReadOnlyEntityType, ByRef storeObject As StoreObjectIdentifier) As Boolean

Parametri

entityType
IReadOnlyEntityType

Tipo di entità.

storeObject
StoreObjectIdentifier

Identificatore dell'oggetto store simile alla tabella.

Restituisce

Valore che indica se la clausola SQL OUTPUT viene utilizzata per salvare le modifiche apportate alla tabella associata.

Si applica a