Top "Repository-pattern" questions

The repository pattern provides a way to provide isolation between the data access layer of your application with the business layer.

How are Spring Data repositories actually implemented?

I have been working with Spring Data JPA repository in my project for some time and I know the below …

java spring spring-data repository-pattern ddd-repositories
Repository and Unit of Work patterns - How to save changes

I'm struggling to understand the relationship between the Repository and Unit of Work patterns despite this kind of question being …

c# repository-pattern unit-of-work
Well designed query commands and/or specifications

I've been searching for quite some time for a good solution to the problems presented by the typical Repository pattern (…

c# repository-pattern command-pattern specification-pattern
Multiple Git repositories for each Eclipse project or one Git repository

I am in the process of moving to Git from SVN. In SVN I had multiple eclipse projects in a …

eclipse git repository repository-pattern egit
DDD - Persistence Model and Domain Model

I am trying to learn domain-driven design (DDD), and I think I got the basic idea. But there is something …

oop model repository domain-driven-design repository-pattern
Implementation of Repository Pattern in Python?

Mainly out of curiosity, I'm looking for a Python framework or example for the Repository Pattern of decoupling persistence logic …

python repository-pattern
Generate POCO classes in different project to the project with Entity Framework model

I'm trying to use the Repository Pattern with EF4 using VS2010. To this end I am using POCO code generation …

.net entity-framework code-generation repository-pattern poco
How to unit test a repository pattern that uses Entity Framework?

I'm currently trying to unit test a repository I made through Entity Framework: What I want to happen is that …

c# entity-framework unit-testing repository-pattern
Repository Pattern with Entity Framework 4.1 and Parent/Child Relationships

I still have some confusion with the Repository Pattern. The primary reason why I want to use this pattern is …

c# domain-driven-design entity-framework-4.1 repository-pattern aggregateroot
Unit of work + repository + service layer with dependency injection

I am designing a web application and a windows service and want to use the unit of work + repository layer …

asp.net-mvc design-patterns dependency-injection repository-pattern unit-of-work