共用方式為


Database.SaveChanges 方法

定義

多載

SaveChanges(IList<IUpdateEntry>)

將所提供專案的變更保存到資料庫。

SaveChanges(IReadOnlyList<IUpdateEntry>)

將所提供專案的變更保存到資料庫。

SaveChanges(IList<IUpdateEntry>)

將所提供專案的變更保存到資料庫。

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

參數

entries
IList<IUpdateEntry>

代表要保存之變更的專案。

傳回

保存至資料庫的狀態專案數目。

實作

適用於

SaveChanges(IReadOnlyList<IUpdateEntry>)

將所提供專案的變更保存到資料庫。

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

參數

entries
IReadOnlyList<IUpdateEntry>

代表要保存之變更的專案。

傳回

保存至資料庫的狀態專案數目。

實作

適用於