-
-
Notifications
You must be signed in to change notification settings - Fork 0
easyextensionsentityframeworkcoredatabaserepository IRepository
BigMakCode edited this page Aug 5, 2024
·
1 revision
Base repository interface for accessing and manipulating entities.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph EasyExtensions.EntityFrameworkCore.Database.Repository
EasyExtensions.EntityFrameworkCore.Database.Repository.IRepository[[IRepository]]
class EasyExtensions.EntityFrameworkCore.Database.Repository.IRepository interfaceStyle;
end
| Returns | Name |
|---|---|
Task<int> |
SaveChangesAsync()Saves all changes made in the context to the underlying database asynchronously. |
Base repository interface for accessing and manipulating entities.
public Task<int> SaveChangesAsync()Saves all changes made in the context to the underlying database asynchronously.
A task that represents the asynchronous save operation. The task result contains the number of state entries written to the database.
Generated with ModularDoc