Database.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 abstract int SaveChanges (System.Collections.Generic.IList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> entries);
abstract member SaveChanges : System.Collections.Generic.IList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> -> int
Public MustOverride 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.

Implements

Applies to

SaveChanges(IReadOnlyList<IUpdateEntry>)

Persists changes from the supplied entries to the database.

public abstract int SaveChanges (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> entries);
abstract member SaveChanges : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> -> int
Public MustOverride 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.

Implements

Applies to