vote up 12 vote down star
12

Can anyone recommend good tutorial on repository pattern usage, in C#?

flag

17% accept rate

6 Answers

vote up 7 vote down

A good place is the book Applying Domain-Driven Design and Patterns by Jimmy Nilsson

My blog post: Using the unit of work-per-request pattern in ASP.NET MVC also details a Repository implementation in C#.

link|flag
vote up 3 vote down

I'm using one from Mike Hadlow (http://mikehadlow.blogspot.com/)
With LINQ and some IoC, it's really joy to programm...
Also, it's easy to make fake repository based on mike's interface and do some TDD:)

link|flag
I agree, it's very good work. See mikehadlow.blogspot.com/2008/03/… and the full source at code.google.com/p/sutekishop/… – Robert Claypool Oct 2 at 4:21
vote up 3 vote down

I'm not sure one exists. I assume you've looke at the Martin Fowler EA description?. If you have the book, it's very explicit about all the patterns and quite good. In my oppinion :)

Maybe this would be nice opportunity to make one here on this site.

link|flag
Repository isn't a GoF pattern, but it is described in PoEAA. – JasonTrue Nov 6 '08 at 6:52
Indeed. I fixed the description – svrist Dec 15 '08 at 17:03
vote up 1 vote down

This post describes the approach I use:

http://colinjack.blogspot.com/2007/11/repository-implementation-dddnhibernate.html

I'd be careful about expecting to be able to copy/paste a solution though, in my experience with repositories its better to evolve your own implementation.

link|flag
vote up 0 vote down

This video http://www.asp.net/learn/mvc-videos/video-403.aspx goes into it some. This video is in VB, but someone converted into C#; and the code is here http://panjkov.qsh.eu/files/folders/aspnetmvc/entry69.aspx

link|flag
I (starter of this thread) converted that code. I'd like to have realization of Repository based on Generics – Dragan Panjkov Sep 7 '08 at 22:08
vote up 0 vote down

Here is an article describing an implementation of the repository pattern using Linq to SQL. The full code is open source, available @ github.

http://www.codevil.com/index.php/2009/07/02/the-repository-pattern/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.