Database.SaveChanges 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
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>
代表要保存之變更的專案。
傳回
保存至資料庫的狀態專案數目。