-
Notifications
You must be signed in to change notification settings - Fork 14
Closed
Labels
.NETPull requests that update .NET codePull requests that update .NET codeenhancementNew feature or requestNew feature or request
Description
Description
While EF Core’s DbContext provides some Repository-like features:
A
DbContextinstance represents a session with the database and can be used to query and save instances of your entities.
DbContext is a combination of the Unit Of Work and Repository patterns.
Consider implementing a more explicit generic Repository pattern to standardize data access and make the codebase more flexible for future changes.
Acceptance Criteria
- Implement a generic repository for common CRUD operations.
- Refactor existing Service layer to use the Repository pattern.
- Write tests to verify Repository functionality.
Resources
Metadata
Metadata
Assignees
Labels
.NETPull requests that update .NET codePull requests that update .NET codeenhancementNew feature or requestNew feature or request