The repository pattern provides a way to provide isolation between the data access layer of your application with the business layer
116
votes
10answers
49k views
Repository pattern tutorial in C#
Can anyone recommend good tutorial on repository pattern usage, in C#?
55
votes
4answers
7k views
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 Root keeps coming up. When searching both the web and Stack Overflow for help with what ...
49
votes
2answers
8k views
Generic Repository With EF 4.1 what is the point
As i dig deeper in to the DbContext, DbSet and associated interfaces, I am wondering why you would need to implement a seperate "Generic" Repository around these implementations?
It looks like ...
45
votes
6answers
3k views
How to use the repository pattern correctly?
I am wondering how should I be grouping my repositories? Like from the examples I seen on the asp.net mvc and in my books they basically use one repository per database table. But that seems like a ...
33
votes
2answers
3k views
Service Layers and Repositories
I've been using MVC frameworks for a short while now and I really like how the concerns are separated out. I've got into a bad habit of letting the controllers do quite a bit of work. So I'm really ...
31
votes
3answers
7k views
LINQ to SQL and the repository pattern
I feel like I'm running around in circles. I can't seem to make up my mind as to what the right repository pattern is using LINQ to SQL. If you're familiar with Rob Conery's MVC Storefront you will ...
26
votes
4answers
2k views
Repository pattern vs. “smart” business objects
I see two main "schools of thoughts" when it comes to creating larger-scale enterprise-wide apps on .NET (Winforms, WPF, ASP.NET).
Some folks use the "repository pattern" which uses a repository that ...
22
votes
6answers
968 views
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 dumbed down)
Separate your Business Objects from your Data Objects
...
21
votes
4answers
3k views
Repository Pattern: how to Lazy Load? or, Should I split this Aggregate?
I have a domain model that has the concept of an Editor and a Project.
An Editor owns a number of Projects, and a Project has not only an Editor owner, but also a number of Editor members. ...
20
votes
2answers
2k views
C#: Repository Methods vs. Extending IQueryable
I have repositories (e.g. ContactRepository, UserRepository and so forth) which encapsulate data access to the domain model.
When I was looking at searching for data, e.g.
finding a contact whose ...
19
votes
3answers
5k views
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 have two tables: Post and Comments. This is done entirely in POCO, I just need help on ...
18
votes
6answers
2k views
Best way to implement Repository Pattern?
I've been exploring BDD/DDD and as a consequence trying to come up with a proper implementation of the Repository pattern. So far, it's been hard to find a consensus over the best way to implement ...
17
votes
1answer
3k views
GIT repository layout for server with multiple projects
One of the things I like about the way I have Subversion set up is that I can have a single main repository with multiple projects. When I want to work on a project I can check out just that project. ...
16
votes
3answers
476 views
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 repository, there are lots of business logic tasks in the repository which doesn't ...
16
votes
5answers
4k views
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 by right clicking on the entity model designer and clicking Add code generation item. I ...
15
votes
3answers
692 views
NHibernate with or without Repository
There are several similar questions on this matter, by I still haven't found enough reasons to decide which way to go.
The real question is, is it reasonable to abstract the NHibernate using a ...
15
votes
4answers
3k views
How can I write a clean Repository without exposing IQueryable to the rest of my application?
So, I've read all the Q&A's here on SO regarding the subject of whether or not to expose IQueryable to the rest of your project or not (see here, and here), and I've ultimately decided that I ...
14
votes
3answers
688 views
Confused about Spring-Data DDD repository pattern
I don't know so much about DDD repository pattern but the implementation in Spring is confusion me.
public interface PersonRepository extends JpaRepository<Person, Long> { … }
As the ...
14
votes
1answer
2k views
MVC3 App/Service Layer/Repository Layer/POCO Classes/EF4 - Questions!
I am new to this whole design concept, and in reading for the last few weeks I have gathered a lot of information, but it seems scattered and conflicted. Terms are mixed, and I am just having a hard ...
14
votes
3answers
3k views
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 an ASP.NET MVC 3 app, and am trying to understand these design patterns, but my ...
12
votes
7answers
2k views
TDD - Want to test my Service Layer with a fake Repository, but how?
I've designed an application that uses the repository pattern, and then a separate service layer such as this:
public class RegistrationService: IRegistrationService
{
public void Register(User ...
11
votes
2answers
2k views
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 needed to include more entities in a query. I got to include one entity ...
11
votes
2answers
683 views
Is this a right way to use NHibernate?
I spent the rest of the evening reading StackOverflow questions and also some blog entries and links about the subject. All of them turned out to be very helpful, but I still feel that they don't ...
11
votes
6answers
2k views
Using MVC and fluent Nhibernate, how do I validate unique fields on my ViewModel before I bind them to my Domain Object and Save them?
I have a website where I allow users to create new Part records. I'm trying to figure out the best way to validate specific fields for uniqueness. I want to make sure that somebody doesn't try to ...
11
votes
3answers
2k views
Repository Pattern Best Practice
So I'm implementing the repository pattern in an application and came across two "issues" in my understanding of the pattern:
Querying - I've read responses that IQueryable should not be used when ...
11
votes
1answer
1k views
Repository Pattern: What is the 'right size'?
I'm building some repositories for an MVC application, and I'm trying to come up with the right way to divide responsibilities between repositories. In most cases, this is obvious. But there is one ...
11
votes
5answers
3k views
Transactions in the Repository Pattern
How do I encapsulate the saving of more than one entity in a transactional manner using the repository pattern? For example, what if I wanted to add an order and update the customer status based on ...
10
votes
2answers
1k views
DDD - How to implement high-performing repositories for searching
I have a question regarding DDD and the repository pattern.
Say I have a Customer repository for the Customer aggregate root. The Get & Find methods return the fully populated aggregate, which ...
10
votes
4answers
1k views
I need some clarification on the MVC architecture and the three-tier architecture
I've been reading the book Pro ASP NET MVC Framework and I'm getting really confused with a lot of things. I've been trying to do some research but I'm finding that with so many different approaches ...
10
votes
2answers
2k views
Repository Pattern - POCOs or IQueryable?
I'm new to the Repository Pattern and after doing a lot of reading on the web I have a rough understanding of what is going on, but there seems to be a conflict of ideas.
One is what the IRepository ...
9
votes
1answer
502 views
Need a simple example of using nhibernate + unit of work + repository pattern + service layer + ninject
I am using
nhibernate + fluent nhibernate
asp.net mvc 3
ninject
Currently I am using nhibernate, ninject with the repository pattern and service layers.
So I have this
ninject
public class ...
9
votes
6answers
851 views
ASP.NET MVC using the Repository Pattern
Currently im using EF and using its datacontext directly in all of my actions, but since i started reading about loose coupling and testability im thinking that thats not the best way to go. Im trying ...
9
votes
3answers
503 views
Is Repository pattern an overkill
I have been using Repository pattern (DDD and POEAA) for some time. However some of our team members have argued that it is just an extra layer of abstraction and unnecessary.
I can seen some benefit ...
9
votes
9answers
1k views
Books that will cover TDD, DDD and Design Patterns in .NET
I would like to get book(s) that will really give me a complete view of modern ASP.NET development using C#, TDD, ASP.NET MVC, DDD and Design Patterns such as the Repository pattern. I'm very ...
9
votes
3answers
788 views
Is it ok for entities to access repositories?
I've just started working with DDD, so maybe this is a silly question...
Is it ok for an entity to access a repository (via some IRepository interface) to get a value at runtime? For example, I want ...
9
votes
4answers
1k views
Is a Repository still a Repository without Unit of Work?
If you create a repository class that encapsulates all of your persistence logic for a given entity, such as PersonRepository, but your repository class does not implement the Unit of Work pattern or ...
9
votes
3answers
9k views
Entity Framework Generic Repository Error
I am trying to create a very generic generics repository for my Entity Framework repository that has the basic CRUD statements and uses an Interface. I have hit a brick wall head first and been ...
9
votes
4answers
2k views
How should I structure a simple ASP.NET MVC app?
I've been reading a few things about ASP.NET MVC, SOLID and so on, and I am trying to figure out a simple "recipe" for small-to-medium ASP.NET MVC apps that would put these concepts together; the ...
9
votes
11answers
2k views
Entity classes decoupled from LINQ to SQL provider for implementing the Repository pattern. How?
I have looked over the Repository pattern and I recognized some ideas that I was using in the past which made me feel well.
However now I would like to write an application that would use this ...
9
votes
4answers
6k views
Implementation example for Repository pattern with Linq to Sql and C#
I am looking for a Repository pattern implementation example/resource that follows domain driven design principles for my ASP.net MVC application. Does anyone have a good example or learning resource ...
8
votes
2answers
866 views
Dependecy Injection with Massive ORM: dynamic trouble
I've started working on an MVC 3 project that needs data from an enormous existing database.
My first idea was to go ahead and use EF 4.1 and create a bunch of POCO's to represent the tables I need, ...
8
votes
4answers
2k views
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 (for example) my Entity framework mappings with Linq to ...
8
votes
1answer
571 views
C# Linq-to-SQL Create a Generic Repository
I have a few repositories that all generally look like this
public class DepartmentsRepository
{
private PersonnelActionFormDataContext db = new PersonnelActionFormDataContext();
/// ...
8
votes
5answers
1k views
TDD demos/guides/videos including fake repositories or domain models [closed]
I have to rewrite an old application and I would like to start using the repository pattern for data access and also write as many tests as possible for the required functionalities.
Can you ...
8
votes
2answers
351 views
In a DDD approach, is this example modelled correctly?
Just created an acc on SO to ask this :)
Assuming this simplified example: building a web application to manage projects...
The application has the following requirements/rules.
1) Users should be ...
8
votes
2answers
1k views
Repository Pattern and multiple related core entities or business objects - one repository or more?
I am looking at implementing the repository pattern (since what I came up with was 90% an implementation of it anyway), and have come across a design question - where I have two or more core business ...
8
votes
1answer
920 views
Not sure how to use Dependency Injection + Repository Pattern + Unit Of Work Pattern with a WinForm application
(apologies for the Wall Of Text... :) )
Summary
Using Dependency Injection with my Winfor application is creating a large number of Repository Context's. I'm not sure if the way i'm using this is ...
8
votes
4answers
1k views
Some Issues about Rob Conery's repository pattern ?
Please read my update at the end of question after reading the answers:
I'm trying to apply repository pattern
as Rob Conery's described on his
blog under "MVC Storefront ".
But i want to ...
8
votes
3answers
812 views
DDD: Getting aggregate roots for other aggregates
I've been studying DDD for the past 2 weeks, and one of the things that really stuck out to me was how aggregate roots can contain other aggregate roots. Aggregate roots are retrieved from the ...
8
votes
4answers
2k views
Repository Pattern in C#
I am trying to figure out the repository pattern for .NET. I think I have a pretty decent understanding of it, but I still don't feel comfortable using it.
I have googled for this topic, but found ...