About 127,000 results
Open links in new tab
  1. Repository Design Pattern - GeeksforGeeks

    Jul 23, 2025 · The Repository Design Pattern is a software design pattern that acts as an intermediary layer between an application's business logic and data storage. Its primary …

  2. Designing the infrastructure persistence layer - .NET

    Feb 20, 2023 · EF DbContext implements both the Repository and the Unit of Work patterns. The Repository pattern is a Domain-Driven Design pattern intended to keep persistence concerns …

  3. Repository Pattern - A controversy explained - Steven Giesel

    Feb 2, 2023 · The repository pattern is a design pattern that provides a way to abstract the data access layer in an application. It acts as an intermediary between an application's data access …

  4. Repository Pattern - DevIQ

    Understand the Repository design pattern and its role in software architecture. Learn how it abstracts data access, providing a clean separation between the data layer and business logic …

  5. Repository Design Pattern in C# - Dot Net Tutorials

    The Repository Pattern is a design pattern commonly used in software development, including C# and .NET applications, to abstract and encapsulate the data access layer.

  6. The Repository Design Pattern - UMLBoard

    Separate your domain logic from your persistence logic. The Repository is a central design pattern of the Domain-Driven-Design (DDD) philosophy. As such, it's relatively common in …

  7. The Repository Pattern in Python: Write Flexible, Testable

    Feb 9, 2025 · It abstracts data access, making your code cleaner, more testable, and resilient to changes in data sources. Let’s break down why this pattern matters and how to implement it in …

  8. DAO vs Repository Patterns - Baeldung

    Sep 17, 2025 · Understand the difference between the DAO and Repository patterns with a Java example.

  9. Repository Pattern in Java: Simplifying Data Access with …

    Learn how the Repository design pattern in Java enhances data access and abstraction, simplifying application architecture while boosting maintainability and decoupling.

  10. What is Repository Design Pattern, Pros and cons - C# Corner

    The Repository Design Pattern is a structural pattern that mediates data access by providing an abstraction over the data layer. It allows you to decouple the data access logic and business …