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.

What is the difference between DAO and Repository patterns?

What is the difference between Data Access Objects (DAO) and Repository patterns? I am developing an application using Enterprise Java …

hibernate domain-driven-design ejb-3.0 repository-pattern data-access-layer
What's an Aggregate Root?

I'm trying to get my head around how to properly use the repository pattern. The central concept of an Aggregate …

design-patterns repository-pattern ddd-repositories aggregateroot
using stored procedure in entity framework

I am using asp.net mvc 5 and C# with Entity Framework... I have model and domain classes for function... now …

asp.net-mvc entity-framework stored-procedures repository-pattern
Difference between Repository and Service Layer?

In OOP Design Patterns, what is the difference between the Repository Pattern and a Service Layer? I am working on …

asp.net-mvc oop repository-pattern service-layer
Method cannot be translated into a store expression

I saw this code work with LINQ to SQL but when I use Entity Framework, it throws this error: LINQ …

c# entity-framework linq-to-entities repository-pattern
Laravel 5 - Interface is not instantiable

I know that this question was asked so many times, but none of answers helped me. I'm getting exception in …

php laravel repository-pattern laravel-5 laravel-ioc
Proper Repository Pattern Design in PHP?

Preface: I'm attempting to use the repository pattern in an MVC architecture with relational databases. I've recently started learning TDD …

php database laravel repository repository-pattern
Repository Pattern - How to understand it and how does it work with "complex" entities?

I'm having a hard time understanding the Repository Pattern. There are a lot of opinions on that topic like in …

java spring hibernate repository-pattern
EF Including Other Entities (Generic Repository pattern)

I am using the Generic Repository pattern on top of Entity Framework Code First. Everything was working fine until I …

c# entity-framework entity-framework-4 repository-pattern ef-code-first