IDatabase.SaveChanges Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
SaveChanges(IList<IUpdateEntry>) |
Mantiene le modifiche apportate dalle voci fornite al database. |
SaveChanges(IReadOnlyList<IUpdateEntry>) |
Mantiene le modifiche apportate dalle voci fornite al database. |
SaveChanges(IList<IUpdateEntry>)
Mantiene le modifiche apportate dalle voci fornite al database.
public int SaveChanges (System.Collections.Generic.IList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> entries);
abstract member SaveChanges : System.Collections.Generic.IList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> -> int
Public Function SaveChanges (entries As IList(Of IUpdateEntry)) As Integer
Parametri
- entries
- IList<IUpdateEntry>
Voci che rappresentano le modifiche da rendere persistenti.
Restituisce
Numero di voci di stato mantenute nel database.
Si applica a
SaveChanges(IReadOnlyList<IUpdateEntry>)
Mantiene le modifiche apportate dalle voci fornite al database.
public int SaveChanges (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> entries);
abstract member SaveChanges : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> -> int
Public Function SaveChanges (entries As IReadOnlyList(Of IUpdateEntry)) As Integer
Parametri
- entries
- IReadOnlyList<IUpdateEntry>
Voci che rappresentano le modifiche da rendere persistenti.
Restituisce
Numero di voci di stato mantenute nel database.