IDatabase.SaveChanges Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SaveChanges(IList<IUpdateEntry>) |
Persists changes from the supplied entries to the database. |
SaveChanges(IReadOnlyList<IUpdateEntry>) |
Persists changes from the supplied entries to the database. |
SaveChanges(IList<IUpdateEntry>)
Persists changes from the supplied entries to the 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
Parameters
- entries
- IList<IUpdateEntry>
Entries representing the changes to be persisted.
Returns
The number of state entries persisted to the database.
Applies to
SaveChanges(IReadOnlyList<IUpdateEntry>)
Persists changes from the supplied entries to the 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
Parameters
- entries
- IReadOnlyList<IUpdateEntry>
Entries representing the changes to be persisted.
Returns
The number of state entries persisted to the database.
Applies to
Entity Framework