Changeset d300631 for ChapterX.Application/Abstractions
- Timestamp:
- 04/28/26 14:53:32 (2 months ago)
- Branches:
- main
- Children:
- b373fea
- Parents:
- dc383dd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ChapterX.Application/Abstractions/IApplicationDbContext.cs
rdc383dd rd300631 1 1 using Microsoft.EntityFrameworkCore; 2 using Microsoft.EntityFrameworkCore.Storage; 2 3 using UserEntity = ChapterX.Domain.Entities.User; 3 4 using StoryEntity = ChapterX.Domain.Entities.Story; … … 40 41 DbSet<NeedApprovalEntity> NeedApprovals { get; } 41 42 Task<int> SaveChangesAsync(CancellationToken cancellationToken = default); 43 Task<IDbContextTransaction> BeginTransactionAsync(CancellationToken cancellationToken = default); 42 44 } 43 45 }
Note:
See TracChangeset
for help on using the changeset viewer.
