RelationalDatabase.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>) |
Rende persistenti le modifiche dalle voci fornite al database. |
SaveChanges(IReadOnlyList<IUpdateEntry>) |
Rende persistenti le modifiche dalle voci fornite al database. |
SaveChanges(IList<IUpdateEntry>)
Rende persistenti le modifiche dalle voci fornite al database.
public override int SaveChanges (System.Collections.Generic.IList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> entries);
override this.SaveChanges : System.Collections.Generic.IList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> -> int
Public Overrides 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 salvate in modo permanente nel database.
Si applica a
SaveChanges(IReadOnlyList<IUpdateEntry>)
Rende persistenti le modifiche dalle voci fornite al database.
public override int SaveChanges (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> entries);
override this.SaveChanges : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> -> int
Public Overrides 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 salvate in modo permanente nel database.