views:

357

answers:

4

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 some advanced topics along with the repository pattern. What I am looking for is a basic knowledge of the concept, then I can build on it. With that said, can I get a recommendation of some good articles on the repository pattern?

Thanks

+5  A: 

I recommend start by Fowler's definition

This concrete implementation could help you as well : )

SDReyes
Can't go wrong with anything on the Bliki. :D
Randolpho
+2  A: 

Ayende's Rhino.Commons has a decent implementation.

I also benefitted from reading "Domain-Driven Design" by Eric Evans, which gives a good foundation of understanding the motivations behind Repository.

codekaizen
+5  A: 

See the answers to Repository pattern tutorial in C#.

Oded
+2  A: 

Have a look at following Article.

Asad Butt