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.

Where does paging, sorting, etc go in repository pattern?

Where do we put the logic for paging and sorting data in an asp.net repository pattern project? Should it …

asp.net-mvc asp.net-mvc-3 repository-pattern
Repository Pattern Standardization of methods

All I am trying to find out the correct definition of the repository pattern. My original understanding was this (extremely …

c# design-patterns repository-pattern
Entity Framework 4 CTP 4 / CTP 5 Generic Repository Pattern and Unit Testable

I'm playing with the latest Entity Framework CTP 5 release and building a simple asp.net MVC blog where I just …

asp.net-mvc-2 entity-framework-4 repository-pattern
Onion Architecture, Unit of Work and a generic Repository pattern

This is the first time I am implementing a more domain-driven design approach. I have decided to try the Onion …

c# .net repository-pattern unit-of-work onion-architecture
Repository pattern with Entity framework

Repository pattern is used to abstract from particular database and object-relation-mapping technology(like EF) used. So I can easily replace (…

.net asp.net-mvc entity-framework repository repository-pattern
ASP.NET MVC with service layer and repository layer, where should the interfaces be defined?

I am in the process of determining a fairly simple layered architecture for a .NET MVC application that has a …

asp.net-mvc repository-pattern service-layer
How does a service layer fit into my repository implementation?

I have created a POCO model class and a repository class which handles persistence. Since the POCO cannot access the …

c# asp.net domain-driven-design repository repository-pattern
Having a repository dependent on another repository

I've recently been spending time reading up on SOLID principles and decided to seeing how the code base I work …

c# repository-pattern solid-principles
Specification Pattern in Domain Driven Design

I've been struggling around an DDD related issue with Specifications and I've read much into DDD and specifications and repositories. …

repository domain-driven-design repository-pattern specifications
Repository pattern with Linq to SQL using IoC, Dependency Injection, Unit of Work

There seems to be lots of examples on implementing Repository pattern for Linq to SQL. Most of them featuring IRepository …

linq-to-sql dependency-injection inversion-of-control repository-pattern unit-of-work