Condividi tramite


Database.SaveChangesAsync Metodo

Definizione

Overload

SaveChangesAsync(IList<IUpdateEntry>, CancellationToken)

In modo asincrono le modifiche apportate dalle voci fornite al database.

SaveChangesAsync(IReadOnlyList<IUpdateEntry>, CancellationToken)

In modo asincrono le modifiche apportate dalle voci fornite al database.

SaveChangesAsync(IList<IUpdateEntry>, CancellationToken)

In modo asincrono le modifiche apportate dalle voci fornite al database.

public abstract System.Threading.Tasks.Task<int> SaveChangesAsync (System.Collections.Generic.IList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> entries, System.Threading.CancellationToken cancellationToken = default);
abstract member SaveChangesAsync : System.Collections.Generic.IList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<int>
Public MustOverride Function SaveChangesAsync (entries As IList(Of IUpdateEntry), Optional cancellationToken As CancellationToken = Nothing) As Task(Of Integer)

Parametri

entries
IList<IUpdateEntry>

Voci che rappresentano le modifiche da rendere persistenti.

cancellationToken
CancellationToken

Oggetto CancellationToken da osservare durante l'attesa del completamento dell'attività.

Restituisce

Attività che rappresenta l'operazione di salvataggio asincrono. Il risultato dell'attività contiene il numero di voci mantenute nel database.

Implementazioni

Eccezioni

Si applica a

SaveChangesAsync(IReadOnlyList<IUpdateEntry>, CancellationToken)

In modo asincrono le modifiche apportate dalle voci fornite al database.

public abstract System.Threading.Tasks.Task<int> SaveChangesAsync (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> entries, System.Threading.CancellationToken cancellationToken = default);
abstract member SaveChangesAsync : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<int>
Public MustOverride Function SaveChangesAsync (entries As IReadOnlyList(Of IUpdateEntry), Optional cancellationToken As CancellationToken = Nothing) As Task(Of Integer)

Parametri

entries
IReadOnlyList<IUpdateEntry>

Voci che rappresentano le modifiche da rendere persistenti.

cancellationToken
CancellationToken

Oggetto CancellationToken da osservare durante l'attesa del completamento dell'attività.

Restituisce

Attività che rappresenta l'operazione di salvataggio asincrono. Il risultato dell'attività contiene il numero di voci mantenute nel database.

Implementazioni

Si applica a