https://github.com/dcyuksel/repositorypattern
Generic Repository Pattern in C#
https://github.com/dcyuksel/repositorypattern
csharp data-access design-patterns entity-framework-core generic generic-repository-pattern repository-pattern
Last synced: 10 months ago
JSON representation
Generic Repository Pattern in C#
- Host: GitHub
- URL: https://github.com/dcyuksel/repositorypattern
- Owner: dcyuksel
- License: mit
- Created: 2024-10-30T09:52:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-25T14:06:10.000Z (over 1 year ago)
- Last Synced: 2025-03-26T16:27:01.584Z (about 1 year ago)
- Topics: csharp, data-access, design-patterns, entity-framework-core, generic, generic-repository-pattern, repository-pattern
- Language: C#
- Homepage: https://medium.com/@dnzcnyksl/generic-repository-pattern-in-c-354ec183dc84
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RepositoryPattern
Repository Pattern in C#
In almost every modern application, there’s at least one data source and a data access layer. Regardless of the type of data, we often find ourselves implementing the same operations — like reading, adding, updating, and deleting — over and over again for different data types. This is where the generic repository pattern comes in handy. It centralizes data access logic, making it easier to maintain and reuse.