Can anyone recommend good tutorial on repository pattern usage, in C#?
|
12
|
|
|
|
|
|
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#. |
|||
|
|
|
|
I'm using one from Mike Hadlow (http://mikehadlow.blogspot.com/) |
|||
|
|
|
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. |
|||
|
|
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. |
||
|
|
|
|
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 |
||
|
|
|
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/ |
||
|
|
