IDatabase.SaveChanges Method

Definition

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