Condividi tramite


SqliteEntityTypeExtensions.IsSqlReturningClauseUsed Metodo

Definizione

Overload

IsSqlReturningClauseUsed(IReadOnlyEntityType)

Restituisce un valore che indica se utilizzare la clausola SQL RETURNING durante il salvataggio delle modifiche apportate alla tabella. La clausola RETURNING non è compatibile con determinate funzionalità sqlite, ad esempio tabelle virtuali o tabelle con trigger AFTER.

IsSqlReturningClauseUsed(IReadOnlyEntityType, StoreObjectIdentifier)

Restituisce un valore che indica se utilizzare la clausola SQL RETURNING durante il salvataggio delle modifiche apportate alla tabella. La clausola RETURNING non è compatibile con determinate funzionalità sqlite, ad esempio tabelle virtuali o tabelle con trigger AFTER.

IsSqlReturningClauseUsed(IReadOnlyEntityType)

Restituisce un valore che indica se utilizzare la clausola SQL RETURNING durante il salvataggio delle modifiche apportate alla tabella. La clausola RETURNING non è compatibile con determinate funzionalità sqlite, ad esempio tabelle virtuali o tabelle con trigger AFTER.

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

Parametri

entityType
IReadOnlyEntityType

Tipo di entità.

Restituisce

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

Si applica a

IsSqlReturningClauseUsed(IReadOnlyEntityType, StoreObjectIdentifier)

Restituisce un valore che indica se utilizzare la clausola SQL RETURNING durante il salvataggio delle modifiche apportate alla tabella. La clausola RETURNING non è compatibile con determinate funzionalità sqlite, ad esempio tabelle virtuali o tabelle con trigger AFTER.

public static bool IsSqlReturningClauseUsed (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType entityType, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member IsSqlReturningClauseUsed : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType * StoreObjectIdentifier -> bool
<Extension()>
Public Function IsSqlReturningClauseUsed (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

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

Si applica a